aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-10-27 09:27:46 -0400
committerKen Moore <ken@ixsystems.com>2017-10-27 09:27:46 -0400
commit73e0138c0047e8aee30233d1d15d9dfaf8831397 (patch)
tree6bb9331f01aa6db71584a5e80c0d3e9c4708d0c8 /src-qt5
parentEnsure that "Exec" and "TryExec" strings with quotes are handled properly. (diff)
downloadlumina-73e0138c0047e8aee30233d1d15d9dfaf8831397.tar.gz
lumina-73e0138c0047e8aee30233d1d15d9dfaf8831397.tar.bz2
lumina-73e0138c0047e8aee30233d1d15d9dfaf8831397.zip
Fix a couple theme engine holdovers in lumina-open, and turn off debugging again.
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/core/lumina-open/main.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src-qt5/core/lumina-open/main.cpp b/src-qt5/core/lumina-open/main.cpp
index 7b6cb2ad..2b9e9184 100644
--- a/src-qt5/core/lumina-open/main.cpp
+++ b/src-qt5/core/lumina-open/main.cpp
@@ -29,7 +29,7 @@
#include <LuminaOS.h>
#include <LuminaThemes.h>
-#define DEBUG 1
+#define DEBUG 0
void printUsageInfo(){
qDebug() << "lumina-open: Application launcher for the Lumina Desktop Environment";
@@ -50,7 +50,6 @@ void ShowErrorDialog(int argc, char **argv, QString message){
//Setup the application
QApplication App(argc, argv);
App.setAttribute(Qt::AA_UseHighDpiPixmaps);
- LuminaThemeEngine theme(&App);
LUtils::LoadTranslation(&App,"lumina-open");
QMessageBox dlg(QMessageBox::Critical, QObject::tr("File Error"), message );
dlg.exec();
@@ -141,7 +140,6 @@ QString cmdFromUser(int argc, char **argv, QString inFile, QString extension, QS
LTHEME::LoadCustomEnvSettings();
QApplication App(argc, argv);
App.setAttribute(Qt::AA_UseHighDpiPixmaps);
- LuminaThemeEngine theme(&App);
LUtils::LoadTranslation(&App,"lumina-open");
LFileDialog w;
bgstack15