diff options
author | Arno <arno@disconnect.de> | 2018-01-02 23:10:08 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-01-02 23:10:08 +0100 |
commit | aab351093e3ba713f1179a797d0f5929bdb4c92c (patch) | |
tree | 512b6858491e209f4d7be1f9fe46a0921c8523df /filewidget.h | |
parent | b5dc8c10367537aec8ce7c061f608ca896ec9f36 (diff) | |
download | ShemovCleaner-aab351093e3ba713f1179a797d0f5929bdb4c92c.tar.gz ShemovCleaner-aab351093e3ba713f1179a797d0f5929bdb4c92c.tar.bz2 ShemovCleaner-aab351093e3ba713f1179a797d0f5929bdb4c92c.zip |
Save CachedFileData to disk
Since we already have the data, save it to speed up the start.
Surprisingly, the hardest part was to figure out how to use
QStandardPaths to find a location where to save the file. I went with
the semi-hardcoded path HomeLocation/.shemovcleaner, even though we're
on windows.
Diffstat (limited to 'filewidget.h')
-rw-r--r-- | filewidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filewidget.h b/filewidget.h index 9c466fa..468821f 100644 --- a/filewidget.h +++ b/filewidget.h @@ -41,7 +41,7 @@ class FileWidget : public QWidget { QToolBar *toolBar() { return mToolBar; } const QString currentDir() const { return mDir->text(); } void setProgressBar(QProgressBar *progressBar) { mProgressBar = progressBar; } - ~FileWidget(); + virtual ~FileWidget(); signals: void statusMessage(const QString &msg); |