aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core-utils/lumina-config/main.cpp')
-rw-r--r--src-qt5/core-utils/lumina-config/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core-utils/lumina-config/main.cpp b/src-qt5/core-utils/lumina-config/main.cpp
index b958c10e..27493bac 100644
--- a/src-qt5/core-utils/lumina-config/main.cpp
+++ b/src-qt5/core-utils/lumina-config/main.cpp
@@ -20,11 +20,11 @@ int main(int argc, char ** argv)
LSingleApplication a(argc, argv, "lumina-config"); //loads translations inside constructor
if(!a.isPrimaryProcess()){ return 0; }
- LuminaThemeEngine theme(&a);
+ //LuminaThemeEngine theme(&a);
mainWindow w;
QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(slotSingleInstance()) );
- QObject::connect(&theme, SIGNAL(updateIcons()), &w, SLOT(setupIcons()) );
+ //QObject::connect(&theme, SIGNAL(updateIcons()), &w, SLOT(setupIcons()) );
w.show();
int retCode = a.exec();
bgstack15