diff options
Diffstat (limited to 'src/core/model/GpgGenerateKeyResult.cpp')
-rw-r--r-- | src/core/model/GpgGenerateKeyResult.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/model/GpgGenerateKeyResult.cpp b/src/core/model/GpgGenerateKeyResult.cpp index 005ea36c..990024de 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 { +auto GpgGenerateKeyResult::GetFingerprint() -> std::string const { return result_ref_->fpr; } |