aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/model/GpgGenerateKeyResult.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-01-12 06:02:37 +0000
committersaturneric <[email protected]>2024-01-12 06:02:37 +0000
commitbf538056b24a68b8fd235b1c50991ee8eb46a776 (patch)
treee1bab54095b80df62b321fb5bd69453f9f951b05 /src/core/model/GpgGenerateKeyResult.cpp
parentfeat: improve api and ui of keys import and export (diff)
downloadGpgFrontend-bf538056b24a68b8fd235b1c50991ee8eb46a776.tar.gz
GpgFrontend-bf538056b24a68b8fd235b1c50991ee8eb46a776.zip
refactor: use QString instead of std::string and improve threading system
Diffstat (limited to 'src/core/model/GpgGenerateKeyResult.cpp')
-rw-r--r--src/core/model/GpgGenerateKeyResult.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/model/GpgGenerateKeyResult.cpp b/src/core/model/GpgGenerateKeyResult.cpp
index 990024de..f7ebf14e 100644
--- a/src/core/model/GpgGenerateKeyResult.cpp
+++ b/src/core/model/GpgGenerateKeyResult.cpp
@@ -42,7 +42,7 @@ GpgGenerateKeyResult::GpgGenerateKeyResult(gpgme_genkey_result_t r)
auto GpgGenerateKeyResult::IsGood() -> bool { return result_ref_ != nullptr; }
-auto GpgGenerateKeyResult::GetFingerprint() -> std::string const {
+auto GpgGenerateKeyResult::GetFingerprint() -> QString const {
return result_ref_->fpr;
}