diff options
author | Ken Moore <ken@ixsystems.com> | 2017-10-27 09:27:46 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-10-27 09:27:46 -0400 |
commit | 73e0138c0047e8aee30233d1d15d9dfaf8831397 (patch) | |
tree | 6bb9331f01aa6db71584a5e80c0d3e9c4708d0c8 /src-qt5 | |
parent | Ensure that "Exec" and "TryExec" strings with quotes are handled properly. (diff) | |
download | lumina-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.cpp | 4 |
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; |