aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-xconfig/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core-utils/lumina-xconfig/main.cpp')
-rw-r--r--src-qt5/core-utils/lumina-xconfig/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core-utils/lumina-xconfig/main.cpp b/src-qt5/core-utils/lumina-xconfig/main.cpp
index 2596bf7a..a39a9f5d 100644
--- a/src-qt5/core-utils/lumina-xconfig/main.cpp
+++ b/src-qt5/core-utils/lumina-xconfig/main.cpp
@@ -26,12 +26,12 @@ int main(int argc, char ** argv)
if( !a.isPrimaryProcess()){ return 0; }
//qDebug() << "Loaded QApplication";
a.setApplicationName("Lumina Screen Configuration");
- LuminaThemeEngine themes(&a);
+ //LuminaThemeEngine themes(&a);
//Start the UI
MainUI w;
QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(slotSingleInstance()) );
- QObject::connect(&themes, SIGNAL(updateIcons()), &w, SLOT(loadIcons()) );
+ //QObject::connect(&themes, SIGNAL(updateIcons()), &w, SLOT(loadIcons()) );
w.show();
int retCode = a.exec();
bgstack15