Skip to content

Commit

Permalink
Fix previuois commit
Browse files Browse the repository at this point in the history
  • Loading branch information
scorpio810 committed Jan 25, 2025
1 parent c4b6939 commit c6427cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sources/machine_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,11 @@ void MachineInfo::send_info_to_debug()
qInfo()<< " User Location:"<< QString(QETApp::configDir().toLatin1());
qInfo()<< "";
qInfo()<< " For QET configuration-files:";
#if defined(Q_OS_WIN32) || defined(Q_OS_WIN64)
qInfo()<< " App Config Location: see Regedit: HKEY_CURRENT_USER\Software\QElectroTech\"
#else
qInfo()<< " App Config Location:"<< QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation) +".conf/";
#ifdef Q_OS_WIN
qInfo()<< " App Config Location: see Regedit: HKEY_CURRENT_USER\Software\QElectroTech\";
#endif
qInfo()<< " App Config Location:"<< QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation) +".conf/";
qInfo()<< " For data-files (user-/company-collections, titleblocks, etc.):";
qInfo()<< " App Data Location:"<< QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
qInfo()<< " Directory for project stalefiles:";
Expand Down

0 comments on commit c6427cb

Please sign in to comment.