aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils
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
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')
-rw-r--r--src-qt5/core-utils/lumina-config/main.cpp4
-rw-r--r--src-qt5/core-utils/lumina-search/lumina-search.pro2
-rw-r--r--src-qt5/core-utils/lumina-search/main.cpp4
-rw-r--r--src-qt5/core-utils/lumina-xconfig/main.cpp4
4 files changed, 7 insertions, 7 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();
diff --git a/src-qt5/core-utils/lumina-search/lumina-search.pro b/src-qt5/core-utils/lumina-search/lumina-search.pro
index c0186ce4..4c0d88ef 100644
--- a/src-qt5/core-utils/lumina-search/lumina-search.pro
+++ b/src-qt5/core-utils/lumina-search/lumina-search.pro
@@ -13,7 +13,7 @@ TEMPLATE = app
#include all the special classes from the Lumina tree
include(../../core/libLumina/LUtils.pri) #includes LUtils
include(../../core/libLumina/LuminaXDG.pri)
-include(../../core/libLumina/LuminaSingleApplication.pri)
+#include(../../core/libLumina/LuminaSingleApplication.pri)
include(../../core/libLumina/LuminaThemes.pri)
SOURCES += main.cpp \
diff --git a/src-qt5/core-utils/lumina-search/main.cpp b/src-qt5/core-utils/lumina-search/main.cpp
index 5eee7c32..5e71e99c 100644
--- a/src-qt5/core-utils/lumina-search/main.cpp
+++ b/src-qt5/core-utils/lumina-search/main.cpp
@@ -20,13 +20,13 @@ int main(int argc, char ** argv)
LTHEME::LoadCustomEnvSettings();
QApplication a(argc, argv);
//qDebug() << "Init Theme Engine...";
- LuminaThemeEngine theme(&a);
+ //LuminaThemeEngine theme(&a);
//qDebug() << "Load Translations...";
a.setApplicationName("Search for...");
LUtils::LoadTranslation(&a, "lumina-search");
MainUI w;
- QObject::connect(&theme,SIGNAL(updateIcons()), &w, SLOT(setupIcons()) );
+ //QObject::connect(&theme,SIGNAL(updateIcons()), &w, SLOT(setupIcons()) );
w.show();
if(argc>1){
bool startsearch = false;
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