diff options
author | saturneric <[email protected]> | 2025-01-26 18:40:43 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-01-26 18:40:43 +0000 |
commit | 731ec7339dc6f251a814d4aef59c05b1900ecf3f (patch) | |
tree | 3c0abf0dafb81578c97c0c9d169acbff99cb94d0 /src/ui/main_window/MainWindow.h | |
parent | fix: optimums unknown fpr verifying helper (diff) | |
download | GpgFrontend-731ec7339dc6f251a814d4aef59c05b1900ecf3f.tar.gz GpgFrontend-731ec7339dc6f251a814d4aef59c05b1900ecf3f.zip |
fix: improve code compatibility
Diffstat (limited to 'src/ui/main_window/MainWindow.h')
-rw-r--r-- | src/ui/main_window/MainWindow.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ui/main_window/MainWindow.h b/src/ui/main_window/MainWindow.h index cc3ffd0e..8f8cd05e 100644 --- a/src/ui/main_window/MainWindow.h +++ b/src/ui/main_window/MainWindow.h @@ -214,28 +214,28 @@ class MainWindow : public GeneralMainWindow { /** * @details Open dialog for encrypting file. */ - void SlotFileEncrypt(const QContainer<QString>& paths); + void SlotFileEncrypt(const QStringList& paths); /** * @brief * * @param path */ - void SlotFileDecrypt(const QContainer<QString>& paths); + void SlotFileDecrypt(const QStringList& paths); /** * @brief * * @param path */ - void SlotFileSign(const QContainer<QString>& paths); + void SlotFileSign(const QStringList& paths); /** * @brief * * @param path */ - void SlotFileVerify(const QContainer<QString>& paths); + void SlotFileVerify(const QStringList& paths); /** * @brief @@ -249,14 +249,14 @@ class MainWindow : public GeneralMainWindow { * * @param path */ - void SlotFileEncryptSign(const QContainer<QString>& paths); + void SlotFileEncryptSign(const QStringList& paths); /** * @brief * * @param path */ - void SlotFileDecryptVerify(const QContainer<QString>& paths); + void SlotFileDecryptVerify(const QStringList& paths); /** * @details get value of member restartNeeded to needed. @@ -604,7 +604,7 @@ class MainWindow : public GeneralMainWindow { * @return true * @return false */ - auto check_read_file_paths_helper(const QContainer<QString>& paths) -> bool; + auto check_read_file_paths_helper(const QStringList& paths) -> bool; /** * @brief @@ -613,7 +613,7 @@ class MainWindow : public GeneralMainWindow { * @return true * @return false */ - auto check_write_file_paths_helper(const QContainer<QString>& paths) -> bool; + auto check_write_file_paths_helper(const QStringList& paths) -> bool; /** * @brief |