diff --git a/sources/machine_info.cpp b/sources/machine_info.cpp index 4db3ba955..9b9edecba 100644 --- a/sources/machine_info.cpp +++ b/sources/machine_info.cpp @@ -163,11 +163,15 @@ void MachineInfo::send_info_to_debug() qInfo()<< " User Location:"<< QString(QETApp::configDir().toLatin1()); qInfo()<< ""; qInfo()<< " For QET configuration-files:"; - qInfo()<< " App Config Location:"<< QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation); +#if defined(Q_OS_WIN32) || defined(Q_OS_WIN64) + qInfo()<< " App Config Location: see Regedit" +#else + qInfo()<< " App Config Location:"<< QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation) +".conf/"; +#endif qInfo()<< " For data-files (user-/company-collections, titleblocks, etc.):"; qInfo()<< " App Data Location:"<< QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); qInfo()<< " Directory for project stalefiles:"; - qInfo()<< " Generic Data Location:"<< QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); + qInfo()<< " Generic Data Location:"<< QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/stalefiles/QElectroTech/"; // qInfo()<< " App Local DataLocation:"<< QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation); // qInfo()<< " Home Location:"<< QStandardPaths::writableLocation(QStandardPaths::HomeLocation); // qInfo()<< " Runtime Location:"<< QStandardPaths::writableLocation(QStandardPaths::RuntimeLocation);