From 5f6a27e7754241e744cd9e92bb812da0d7f5e274 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 29 Apr 2016 11:19:47 -0500 Subject: [PATCH] kuiserver: use QApplication rather than QCoreApplication As GUI elements are present in ProgressListModel, use QApplication rather than QCoreApplication to ensure a GUI eventloop. BUG: 348123 REVIEW: 127793 --- kuiserver/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kuiserver/main.cpp b/kuiserver/main.cpp index 3cc118acd..2479873bb 100644 --- a/kuiserver/main.cpp +++ b/kuiserver/main.cpp @@ -35,7 +35,7 @@ extern "C" Q_DECL_EXPORT int kdemain(int argc, char **argv) { QLoggingCategory::setFilterRules(QStringLiteral("kuiserver.debug = true")); - QCoreApplication app(argc, argv); + QApplication app(argc, argv); app.setApplicationName(QStringLiteral("kuiserver")); app.setApplicationVersion(QStringLiteral("2.0")); app.setOrganizationDomain(QStringLiteral("kde.org"));