File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 36
36
37
37
int main (int argc, char ** argv)
38
38
{
39
+ QCoreApplication::setOrganizationName (QStringLiteral (" KDAB" ));
40
+ QCoreApplication::setOrganizationDomain (QStringLiteral (" kdab.com" ));
41
+ QCoreApplication::setApplicationName (QStringLiteral (" hotspot" ));
42
+ QCoreApplication::setApplicationVersion (QStringLiteral (HOTSPOT_VERSION_STRING));
43
+
39
44
QApplication app (argc, argv);
40
45
app.setWindowIcon (QIcon::fromTheme (QStringLiteral (" hotspot" ), app.windowIcon ()));
41
46
qRegisterMetaType<SummaryData>();
@@ -46,8 +51,6 @@ int main(int argc, char** argv)
46
51
qRegisterMetaType<Data::TopDownResults>();
47
52
qRegisterMetaType<Data::CallerCalleeResults>();
48
53
49
- app.setApplicationName (QStringLiteral (" hotspot" ));
50
- app.setApplicationVersion (QStringLiteral (HOTSPOT_VERSION_STRING));
51
54
52
55
QCommandLineParser parser;
53
56
parser.setApplicationDescription (QStringLiteral (" Linux perf GUI for performance analysis." ));
You can’t perform that action at this time.
0 commit comments