diff options
author | Saturneric <[email protected]> | 2021-12-14 17:49:05 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-12-14 17:49:05 +0000 |
commit | 66cd551c8ba7152d4af4aafca41b44d94a7f6bae (patch) | |
tree | ee1d44951edfd9d2c74186aedbc2d071b5ec1a28 /src/gpg/model/GpgKey.h | |
parent | Modified Core to Optimization & Fixed Problem (diff) | |
download | GpgFrontend-66cd551c8ba7152d4af4aafca41b44d94a7f6bae.tar.gz GpgFrontend-66cd551c8ba7152d4af4aafca41b44d94a7f6bae.zip |
SMTP Support Added.
Diffstat (limited to 'src/gpg/model/GpgKey.h')
-rw-r--r-- | src/gpg/model/GpgKey.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpg/model/GpgKey.h b/src/gpg/model/GpgKey.h index 5ddfa94b..4acfa45f 100644 --- a/src/gpg/model/GpgKey.h +++ b/src/gpg/model/GpgKey.h @@ -153,7 +153,7 @@ class GpgKey { private: struct _key_ref_deletor { void operator()(gpgme_key_t _key) { - DLOG(INFO) << "Called" << _key; + DLOG(INFO) << _("Called") << _key; if (_key != nullptr) gpgme_key_unref(_key); } }; |