machine_info.cpp: Minor

This commit is contained in:
Laurent Trinques
2025-01-25 19:03:33 +01:00
parent 4050e8351e
commit 2436daa16f

View File

@@ -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);