diff options
author | Ken Moore <moorekou@gmail.com> | 2015-03-26 15:22:21 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-03-26 15:22:21 -0400 |
commit | f6891cc964fb3f2b1e769be0aa9b24219cac79c1 (patch) | |
tree | 6eda92367dc7e22f701b070d14b28ed82163934d /lumina-open | |
parent | Actually move the file/dir copy onto itself check earlier in the procedure, t... (diff) | |
parent | Merge remote-tracking branch 'upstream/master' into fmNumbers (diff) | |
download | lumina-f6891cc964fb3f2b1e769be0aa9b24219cac79c1.tar.gz lumina-f6891cc964fb3f2b1e769be0aa9b24219cac79c1.tar.bz2 lumina-f6891cc964fb3f2b1e769be0aa9b24219cac79c1.zip |
Merge pull request #77 from william-os4y/fmNumbers
include some information about the files in the statusbar
Diffstat (limited to 'lumina-open')
-rw-r--r-- | lumina-open/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-open/main.cpp b/lumina-open/main.cpp index 8b79682d..657ffc07 100644 --- a/lumina-open/main.cpp +++ b/lumina-open/main.cpp @@ -327,7 +327,7 @@ int main(int argc, char **argv){ //qDebug() << "[lumina-open] Finished Cmd:" << cmd << retcode << p->exitStatus(); //if(retcode!=0 ){ - if(p->exitStatus() == QProcess::CrashExit){ + if(p->exitStatus() == QProcess::CrashExit or retcode > 0){ qDebug() << "[lumina-open] Application Error:" << retcode; QString err = QString(p->readAllStandardError()); if(err.isEmpty()){ err = QString(p->readAllStandardOutput()); } |