diff options
author | Ken Moore <ken@ixsystems.com> | 2017-10-27 09:24:11 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-10-27 09:24:11 -0400 |
commit | f8b26186ce5b6a018d2c833188fb1e9ee7f902d5 (patch) | |
tree | 2b9a65b2df9b6c20e6b863862913c28572afb9ff /src-qt5/core/lumina-open | |
parent | Add the ability to use a "directory" as the target for desktop wallpapers. Wi... (diff) | |
download | lumina-f8b26186ce5b6a018d2c833188fb1e9ee7f902d5.tar.gz lumina-f8b26186ce5b6a018d2c833188fb1e9ee7f902d5.tar.bz2 lumina-f8b26186ce5b6a018d2c833188fb1e9ee7f902d5.zip |
Ensure that "Exec" and "TryExec" strings with quotes are handled properly.
Diffstat (limited to 'src-qt5/core/lumina-open')
-rw-r--r-- | src-qt5/core/lumina-open/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src-qt5/core/lumina-open/main.cpp b/src-qt5/core/lumina-open/main.cpp index 945f0d1f..7b6cb2ad 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 0 +#define DEBUG 1 void printUsageInfo(){ qDebug() << "lumina-open: Application launcher for the Lumina Desktop Environment"; @@ -369,7 +369,7 @@ int main(int argc, char **argv){ QString bin = cmd.section(" ",0,0); if( !LUtils::isValidBinary(bin) ){ //invalid binary for some reason - open a dialog to warn the user instead - QMessageBox::warning(0, QObject::tr("Binary Missing"), QString(QObject::tr("Could not find \"%1\". Please ensure it is installed first.")).arg(bin)+"\n\n"+cmd); + ShowErrorDialog(argc,argv, QString(QObject::tr("Could not find \"%1\". Please ensure it is installed first.")).arg(bin)+"\n\n"+cmd); return 1; } if(DEBUG) qDebug() << "[lumina-open] Running Cmd:" << cmd; @@ -416,7 +416,6 @@ int main(int argc, char **argv){ //Setup the application QApplication App(argc, argv); App.setAttribute(Qt::AA_UseHighDpiPixmaps); - LuminaThemeEngine theme(&App); LUtils::LoadTranslation(&App,"lumina-open"); //App.setApplicationName("LuminaOpen"); QMessageBox dlg(QMessageBox::Critical, QObject::tr("Application Error"), QObject::tr("The following application experienced an error and needed to close:")+"\n\n"+cmd ); |