Implement class for handling filesystem paths

PR #15915.
This commit is contained in:
Vladimir Golovnev
2022-02-08 06:03:48 +03:00
committed by GitHub
parent facfa26eed
commit dd1bd8ad10
131 changed files with 2252 additions and 1868 deletions

View File

@@ -30,6 +30,7 @@
#include <QDialog>
#include "base/path.h"
#include "base/settingvalue.h"
#include "base/torrentfileswatcher.h"
@@ -57,8 +58,8 @@ private:
void onCategoryChanged(int index);
Ui::WatchedFolderOptionsDialog *m_ui;
QString m_savePath;
QString m_downloadPath;
Path m_savePath;
Path m_downloadPath;
bool m_useDownloadPath = false;
SettingValue<QSize> m_storeDialogSize;
};