aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-xconfig/main.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-11-10 10:19:47 -0500
committerKen Moore <ken@ixsystems.com>2016-11-10 10:19:47 -0500
commit6451f4368ee79501af011c833813f51c9713c5d1 (patch)
tree0eba1785c736aadd281cde18492a0dcfebc89de8 /src-qt5/core-utils/lumina-xconfig/main.cpp
parentTag version 1.1.2 internally (Lumina Library no longer in existence) (diff)
downloadlumina-6451f4368ee79501af011c833813f51c9713c5d1.tar.gz
lumina-6451f4368ee79501af011c833813f51c9713c5d1.tar.bz2
lumina-6451f4368ee79501af011c833813f51c9713c5d1.zip
Disable the theme engine from the core-utils.
Clean up the libLumina classes needed by the core-utils.
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