diff options
author | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-07-15 19:16:26 +0000 |
---|---|---|
committer | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-07-15 19:16:26 +0000 |
commit | 95bd97d4f5dc4d0ee91cfeeff89b88ff3d8f26df (patch) | |
tree | 59dec9ad30bbb5457ae66eddbe59b3348dd1feec /configurationdialog.cpp | |
parent | 440f3fe87e9adc95f6155b924162e335f2b434e0 (diff) | |
download | SheMov-95bd97d4f5dc4d0ee91cfeeff89b88ff3d8f26df.tar.gz SheMov-95bd97d4f5dc4d0ee91cfeeff89b88ff3d8f26df.tar.bz2 SheMov-95bd97d4f5dc4d0ee91cfeeff89b88ff3d8f26df.zip |
-finished calling extractor
-QProcess doesn't work as promised in the docs, dunno how to do it yet, but we need a thread to keep the GUI responsive...
-fixed some bugs with the extractionpaths
git-svn-id: file:///var/svn/repos2/shemov/trunk@387 f440f766-f032-0410-8965-dc7d17de2ca0
Diffstat (limited to 'configurationdialog.cpp')
-rw-r--r-- | configurationdialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configurationdialog.cpp b/configurationdialog.cpp index 0a94134..34e5d10 100644 --- a/configurationdialog.cpp +++ b/configurationdialog.cpp @@ -135,7 +135,7 @@ void ConfigurationDialog::readSettings(){ QStringList mvArgs = s.value("paths/movieviewerargs").toStringList(); mMovieViewerArgs->setText(mvArgs.join(" ")); mArchiver->setText(s.value("paths/archiver", "/usr/bin/7z").toString()); - QStringList arArgs = s.value("paths/archiveargs").toStringList(); + QStringList arArgs = s.value("paths/archiverargs").toStringList(); mArchiverArgs->setText(arArgs.join(" ")); QStringList extractPaths = s.value("paths/extractpaths").toStringList(); mArchivePaths->addItems(extractPaths); @@ -156,3 +156,4 @@ void ConfigurationDialog::writeSettings(){ s.setValue("paths/archiverargs", aArgs); s.setValue("paths/extractpaths", mPaths); } + |