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.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src-qt5/core-utils/lumina-search/main.cpp b/src-qt5/core-utils/lumina-search/main.cpp
index 5b2b0479..5e71e99c 100644
--- a/src-qt5/core-utils/lumina-search/main.cpp
+++ b/src-qt5/core-utils/lumina-search/main.cpp
@@ -6,7 +6,7 @@
#include "MainUI.h"
#include <LuminaOS.h>
#include <LuminaThemes.h>
-#include <LuminaUtils.h>
+#include <LUtils.h>
//==== INPUT FORMAT ====
// lumina-search [-no-excludes] [-dir [directory]] [-search <term>]
@@ -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