aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils
diff options
context:
space:
mode:
authorq5sys <jt@xsystems.com>2017-10-25 09:25:44 -0400
committerq5sys <jt@xsystems.com>2017-10-25 09:25:44 -0400
commite72b4cfb324f8c8bb5aebc9382f2344c6ccb6705 (patch)
tree6233ccc424d3359a1ff23795a4ad2ca1f5071fb6 /src-qt5/desktop-utils
parentadd extraction method for custom path (diff)
downloadlumina-e72b4cfb324f8c8bb5aebc9382f2344c6ccb6705.tar.gz
lumina-e72b4cfb324f8c8bb5aebc9382f2344c6ccb6705.tar.bz2
lumina-e72b4cfb324f8c8bb5aebc9382f2344c6ccb6705.zip
fixed handling of initial arguments
Diffstat (limited to 'src-qt5/desktop-utils')
-rw-r--r--src-qt5/desktop-utils/lumina-archiver/MainUI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp
index 20534569..c4b35474 100644
--- a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp
+++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp
@@ -101,7 +101,7 @@ void MainUI::LoadArguments(QStringList args){
connect(BACKEND, SIGNAL(ArchivalSuccessful()), delayClose, SLOT(start()) );
}else if(action==3){
sxList.clear();
- for(int j=1; j<files.length(); j++){ sxList << files[j]; }
+ for(int j=0; j<files.length(); j++){ sxList << files[j]; }
for(int k=0; k<sxList.length(); k++){
if(k==0){ sxFile = sxList[k]; }
if(k==1){ sxPath = sxList[k]; }
bgstack15