diff options
author | Saturneric <[email protected]> | 2021-11-28 13:38:59 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-11-28 13:38:59 +0000 |
commit | 9c1446c97ffff92a6c90442f9148239f24ac9a54 (patch) | |
tree | 73689befad5467dfa02ea0fe8934c52c99c8a874 /src/ui/widgets/FilePage.h | |
parent | Solve key generation and related update issues. (diff) | |
download | GpgFrontend-9c1446c97ffff92a6c90442f9148239f24ac9a54.tar.gz GpgFrontend-9c1446c97ffff92a6c90442f9148239f24ac9a54.zip |
Fix some known issues in basic operations and file operations.
Diffstat (limited to 'src/ui/widgets/FilePage.h')
-rw-r--r-- | src/ui/widgets/FilePage.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ui/widgets/FilePage.h b/src/ui/widgets/FilePage.h index be7ceea7..9fd4308e 100644 --- a/src/ui/widgets/FilePage.h +++ b/src/ui/widgets/FilePage.h @@ -25,6 +25,8 @@ #ifndef GPGFRONTEND_FILEPAGE_H #define GPGFRONTEND_FILEPAGE_H +#include <boost/filesystem.hpp> + #include "ui/GpgFrontendUI.h" namespace GpgFrontend::UI { @@ -65,8 +67,10 @@ class FilePage : public QWidget { QFileSystemModel* dirModel; QTreeView* dirTreeView; QLineEdit* pathEdit; - QString mPath; - QString selectedPath; + + // using boost path + boost::filesystem::path mPath; + boost::filesystem::path selectedPath; QPushButton* upLevelButton; QPushButton* goPathButton; |