diff options
author | saturneric <[email protected]> | 2024-07-29 19:29:56 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-29 19:29:56 +0000 |
commit | fa90ec4b5315b9e70a44a9625c143ce253f0e885 (patch) | |
tree | 8ffa82e33522de03974d6d0289aa831b4fd6ebdf /src/ui/UserInterfaceUtils.h | |
parent | fix: correct urls at appdata.xml (diff) | |
parent | Merge branch 'develop' of github.com:saturneric/GpgFrontend into develop (diff) | |
download | GpgFrontend-fa90ec4b5315b9e70a44a9625c143ce253f0e885.tar.gz GpgFrontend-fa90ec4b5315b9e70a44a9625c143ce253f0e885.zip |
Merge branch 'develop'
Diffstat (limited to 'src/ui/UserInterfaceUtils.h')
-rw-r--r-- | src/ui/UserInterfaceUtils.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/ui/UserInterfaceUtils.h b/src/ui/UserInterfaceUtils.h index 304ba37b..4f42db8c 100644 --- a/src/ui/UserInterfaceUtils.h +++ b/src/ui/UserInterfaceUtils.h @@ -63,8 +63,8 @@ void show_verify_details(QWidget* parent, InfoBoardWidget* info_board, * @param parent * @param verify_res */ -void ImportUnknownKeyFromKeyserver( - QWidget* parent, const GpgVerifyResultAnalyse& verify_res); +void ImportUnknownKeyFromKeyserver(QWidget* parent, + const GpgVerifyResultAnalyse& verify_res); /** * @brief @@ -135,7 +135,7 @@ class CommonUtils : public QWidget { * * @return CommonUtils* */ - static CommonUtils* GetInstance(); + static auto GetInstance() -> CommonUtils*; /** * @brief @@ -214,14 +214,21 @@ class CommonUtils : public QWidget { */ void SignalRestartApplication(int); + /** + * @brief + * + */ + void SignalFavoritesChanged(); + public slots: + /** * @brief * * @param parent * @param in_buffer */ - void SlotImportKeys(QWidget* parent, const QString& in_buffer); + void SlotImportKeys(QWidget* parent, const QByteArray& in_buffer); /** * @brief |