| 493 | } |
| 494 | |
| 495 | QStringList NotepadNextApplication::debugInfo() const |
| 496 | { |
| 497 | QStringList info; |
| 498 | |
| 499 | info.append(QStringLiteral("%1 v%2 %3").arg(applicationDisplayName(), applicationVersion(), APP_DISTRIBUTION)); |
| 500 | info.append(QStringLiteral("Build Date/Time: %1 %2").arg(__DATE__, __TIME__)); |
| 501 | info.append(QStringLiteral("Qt: %1").arg(qVersion())); |
| 502 | info.append(QStringLiteral("OS: %1").arg(QSysInfo::prettyProductName())); |
| 503 | info.append(QStringLiteral("Locale: %1").arg(QLocale::system().name())); |
| 504 | info.append(QStringLiteral("CPU: %1").arg(QSysInfo::currentCpuArchitecture())); |
| 505 | info.append(QStringLiteral("File Path: %1").arg(applicationFilePath())); |
| 506 | info.append(QStringLiteral("Arguments: %1").arg(arguments().join(' '))); |
| 507 | info.append(QStringLiteral("Config File: %1").arg(ApplicationSettings().fileName())); |
| 508 | |
| 509 | return info; |
| 510 | } |
no test coverage detected