aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-search/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core-utils/lumina-search/main.cpp')
-rw-r--r--src-qt5/core-utils/lumina-search/main.cpp4
1 files changed, 2 insertions, 2 deletions
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;
bgstack15