MCPcopy Create free account
hub / github.com/dail8859/NotepadNext / debugInfo

Method debugInfo

src/NotepadNextApplication.cpp:495–510  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

493}
494
495QStringList 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}

Callers 2

mainFunction · 0.80
MainWindowMethod · 0.80

Calls 1

ApplicationSettingsClass · 0.70

Tested by

no test coverage detected