diff options
author | saturneric <[email protected]> | 2025-02-03 15:03:32 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-02-03 15:04:09 +0000 |
commit | dd8bca46a64dc01ed5a914632b1176cfb4a4ef86 (patch) | |
tree | 9096b7c68533e77b824c9929d775ce60493eb4f7 /src/ui/main_window/MainWindow.h | |
parent | refactor: make some function names shorter (diff) | |
download | GpgFrontend-dd8bca46a64dc01ed5a914632b1176cfb4a4ef86.tar.gz GpgFrontend-dd8bca46a64dc01ed5a914632b1176cfb4a4ef86.zip |
feat: allow switch ascii mode at file page options
Diffstat (limited to '')
-rw-r--r-- | src/ui/main_window/MainWindow.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/main_window/MainWindow.h b/src/ui/main_window/MainWindow.h index 9f18c510..8ec6bffd 100644 --- a/src/ui/main_window/MainWindow.h +++ b/src/ui/main_window/MainWindow.h @@ -206,7 +206,7 @@ class MainWindow : public GeneralMainWindow { /** * @details Open dialog for encrypting file. */ - void SlotFileEncrypt(const QStringList& paths); + void SlotFileEncrypt(const QStringList& paths, bool ascii); /** * @brief @@ -220,7 +220,7 @@ class MainWindow : public GeneralMainWindow { * * @param path */ - void SlotFileSign(const QStringList& paths); + void SlotFileSign(const QStringList& paths, bool ascii); /** * @brief @@ -241,7 +241,7 @@ class MainWindow : public GeneralMainWindow { * * @param path */ - void SlotFileEncryptSign(const QStringList& paths); + void SlotFileEncryptSign(const QStringList& paths, bool ascii); /** * @brief |