aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-textedit/main.cpp
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2016-12-14 21:52:08 +0000
committerWeblate <noreply@weblate.org>2016-12-14 21:52:08 +0000
commitf274dd0526568b50e113baa85fcb26a87575eed9 (patch)
treecabcdb147e5dbf2cbe4c321c5ad59963c40c3e89 /src-qt5/desktop-utils/lumina-textedit/main.cpp
parentTranslated using Weblate (lumina_CONFIG@sl (generated)) (diff)
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-f274dd0526568b50e113baa85fcb26a87575eed9.tar.gz
lumina-f274dd0526568b50e113baa85fcb26a87575eed9.tar.bz2
lumina-f274dd0526568b50e113baa85fcb26a87575eed9.zip
Merge branch 'master' of github.com:trueos/lumina
Diffstat (limited to 'src-qt5/desktop-utils/lumina-textedit/main.cpp')
-rw-r--r--src-qt5/desktop-utils/lumina-textedit/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src-qt5/desktop-utils/lumina-textedit/main.cpp b/src-qt5/desktop-utils/lumina-textedit/main.cpp
index f4ee02cf..ec4503a0 100644
--- a/src-qt5/desktop-utils/lumina-textedit/main.cpp
+++ b/src-qt5/desktop-utils/lumina-textedit/main.cpp
@@ -8,7 +8,7 @@
#include <QDebug>
#include <LuminaThemes.h>
-#include <LuminaUtils.h>
+#include <LUtils.h>
#include "MainUI.h"
@@ -17,14 +17,14 @@ int main(int argc, char *argv[]) {
QApplication a(argc, argv);
LUtils::LoadTranslation(&a, "l-te");
//Now go ahead and setup the app
- LuminaThemeEngine theme(&a);
+ //LuminaThemeEngine theme(&a);
QStringList args;
for(int i=1; i<argc; i++){
args << QString(argv[i]);
}
//Now start the window
MainUI W;
- QObject::connect(&theme, SIGNAL(updateIcons()), &W, SLOT(updateIcons()) );
+ //QObject::connect(&theme, SIGNAL(updateIcons()), &W, SLOT(updateIcons()) );
W.LoadArguments(args);
W.show();
return a.exec();
bgstack15