diff options
author | saturneric <[email protected]> | 2024-12-02 17:10:01 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-12-02 19:32:59 +0000 |
commit | 0b5131cd895f6c4f7fc21af6740d03952a2463af (patch) | |
tree | 18d3eeac659e18346aa1477a318c47fecc094c0c /src/ui/main_window/MainWindow.h | |
parent | translations: update zh_CN and de_DE (diff) | |
download | GpgFrontend-0b5131cd895f6c4f7fc21af6740d03952a2463af.tar.gz GpgFrontend-0b5131cd895f6c4f7fc21af6740d03952a2463af.zip |
fix: qt5 build issues
Diffstat (limited to 'src/ui/main_window/MainWindow.h')
-rw-r--r-- | src/ui/main_window/MainWindow.h | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/src/ui/main_window/MainWindow.h b/src/ui/main_window/MainWindow.h index 40dd5862..f397b755 100644 --- a/src/ui/main_window/MainWindow.h +++ b/src/ui/main_window/MainWindow.h @@ -536,22 +536,6 @@ class MainWindow : public GeneralMainWindow { */ void slot_decrypt_email_by_eml_data(const QByteArray& buffer); - /** - * @brief - * - */ - void slot_decrypt_email_by_eml_data_result_helper( - const QMap<QString, QString>& p); - - /** - * @brief - * - * @param err_code - * @param error_string - * @return QString - */ - auto slot_handle_module_error(const QMap<QString, QString>& p) -> bool; - private: /** * @details Create actions for the main-menu and the context-menu of the @@ -612,6 +596,21 @@ class MainWindow : public GeneralMainWindow { const QString& icon, const QString& too_tip, const QList<QKeySequence>& shortcuts = {}) -> QAction*; + /** + * @brief + * + */ + void decrypt_email_by_eml_data_result_helper(QMap<QString, QString> p); + + /** + * @brief + * + * @param err_code + * @param error_string + * @return QString + */ + auto handle_module_error(QMap<QString, QString> p) -> bool; + TextEdit* edit_{}; ///< Tabwidget holding the edit-windows QMenu* file_menu_{}; ///< Submenu for file-operations QMenu* edit_menu_{}; ///< Submenu for text-operations |