diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-05 17:48:46 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-06 11:17:04 +0900 |
commit | d6705bac5da767ff271b66c0f01ff6ed6352515e (patch) | |
tree | a617f12381b078079df41f885e42af386439cea7 /libtdenetwork/gpgmepp/encryptionresult.h | |
parent | 8973dc76ab93ba7acb94478a37f480762a82f19d (diff) | |
download | tdepim-d6705bac5da767ff271b66c0f01ff6ed6352515e.tar.gz tdepim-d6705bac5da767ff271b66c0f01ff6ed6352515e.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libtdenetwork/gpgmepp/encryptionresult.h')
-rw-r--r-- | libtdenetwork/gpgmepp/encryptionresult.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libtdenetwork/gpgmepp/encryptionresult.h b/libtdenetwork/gpgmepp/encryptionresult.h index 44ea09a6b..745ce09b0 100644 --- a/libtdenetwork/gpgmepp/encryptionresult.h +++ b/libtdenetwork/gpgmepp/encryptionresult.h @@ -34,7 +34,7 @@ namespace GpgME { class Error; class InvalidRecipient; - class KDE_EXPORT EncryptionResult : public Result { + class TDE_EXPORT EncryptionResult : public Result { public: EncryptionResult( gpgme_ctx_t ctx=0, int error=0 ); explicit EncryptionResult( const Error & err ); @@ -55,9 +55,9 @@ namespace GpgME { Private * d; }; - KDE_EXPORT std::ostream & operator<<( std::ostream & os, const EncryptionResult & result ); + TDE_EXPORT std::ostream & operator<<( std::ostream & os, const EncryptionResult & result ); - class KDE_EXPORT InvalidRecipient { + class TDE_EXPORT InvalidRecipient { friend class EncryptionResult; InvalidRecipient( EncryptionResult::Private * parent, unsigned int index ); public: @@ -77,7 +77,7 @@ namespace GpgME { unsigned int idx; }; - KDE_EXPORT std::ostream & operator<<( std::ostream & os, const InvalidRecipient & recipient ); + TDE_EXPORT std::ostream & operator<<( std::ostream & os, const InvalidRecipient & recipient ); } |