aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-archiver/TarBackend.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-08-17 14:12:52 -0400
committerKen Moore <ken@ixsystems.com>2017-08-17 14:12:52 -0400
commit35ee744c9e937b82705a4350c6c07ca87dc4bca6 (patch)
tree304b77970d4c49e98bbeac2e0d9e526d2c676abf /src-qt5/desktop-utils/lumina-archiver/TarBackend.h
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-35ee744c9e937b82705a4350c6c07ca87dc4bca6.tar.gz
lumina-35ee744c9e937b82705a4350c6c07ca87dc4bca6.tar.bz2
lumina-35ee744c9e937b82705a4350c6c07ca87dc4bca6.zip
Change up the single-file extraction system in lumina-archiver:
Now have it extract to a datetime-stamped filename in the temp directory, allowing for multiple files with the same name to be previewed at teh same time.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-archiver/TarBackend.h')
-rw-r--r--src-qt5/desktop-utils/lumina-archiver/TarBackend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-archiver/TarBackend.h b/src-qt5/desktop-utils/lumina-archiver/TarBackend.h
index 3eb4eb53..dd08361c 100644
--- a/src-qt5/desktop-utils/lumina-archiver/TarBackend.h
+++ b/src-qt5/desktop-utils/lumina-archiver/TarBackend.h
@@ -22,7 +22,7 @@ public:
//Listing routines
QString currentFile();
- bool isWorking(); //is this currently still making changes?
+ bool isWorking(); //is this currently still making changes?
//Contents listing
QStringList heirarchy(); //returns all the file paths within the archive
bgstack15