diff options
author | saturneric <[email protected]> | 2024-01-12 06:02:37 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-12 06:02:37 +0000 |
commit | bf538056b24a68b8fd235b1c50991ee8eb46a776 (patch) | |
tree | e1bab54095b80df62b321fb5bd69453f9f951b05 /src/core/model/GpgKeySignature.h | |
parent | feat: improve api and ui of keys import and export (diff) | |
download | GpgFrontend-bf538056b24a68b8fd235b1c50991ee8eb46a776.tar.gz GpgFrontend-bf538056b24a68b8fd235b1c50991ee8eb46a776.zip |
refactor: use QString instead of std::string and improve threading system
Diffstat (limited to 'src/core/model/GpgKeySignature.h')
-rw-r--r-- | src/core/model/GpgKeySignature.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/core/model/GpgKeySignature.h b/src/core/model/GpgKeySignature.h index fa000749..a15db99d 100644 --- a/src/core/model/GpgKeySignature.h +++ b/src/core/model/GpgKeySignature.h @@ -86,16 +86,16 @@ class GPGFRONTEND_CORE_EXPORT GpgKeySignature { /** * @brief * - * @return std::string + * @return QString */ - [[nodiscard]] auto GetKeyID() const -> std::string; + [[nodiscard]] auto GetKeyID() const -> QString; /** * @brief * - * @return std::string + * @return QString */ - [[nodiscard]] auto GetPubkeyAlgo() const -> std::string; + [[nodiscard]] auto GetPubkeyAlgo() const -> QString; /** * @brief Create a time object @@ -114,30 +114,30 @@ class GPGFRONTEND_CORE_EXPORT GpgKeySignature { /** * @brief * - * @return std::string + * @return QString */ - [[nodiscard]] auto GetUID() const -> std::string; + [[nodiscard]] auto GetUID() const -> QString; /** * @brief * - * @return std::string + * @return QString */ - [[nodiscard]] auto GetName() const -> std::string; + [[nodiscard]] auto GetName() const -> QString; /** * @brief * - * @return std::string + * @return QString */ - [[nodiscard]] auto GetEmail() const -> std::string; + [[nodiscard]] auto GetEmail() const -> QString; /** * @brief * - * @return std::string + * @return QString */ - [[nodiscard]] auto GetComment() const -> std::string; + [[nodiscard]] auto GetComment() const -> QString; /** * @brief Construct a new Gpg Key Signature object |