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 16:02:34 +0900 |
commit | 7bfa0fb6156e976c839bb0d61459fd4bf6a0aa4e (patch) | |
tree | f63d015ae98a52b2020591c440eeceae38698c4c /libtdenetwork/gpgmepp/verificationresult.h | |
parent | 62c95d25331f3e2d652e2ae995ff51f7cb1f2bcf (diff) | |
download | tdepim-7bfa0fb6156e976c839bb0d61459fd4bf6a0aa4e.tar.gz tdepim-7bfa0fb6156e976c839bb0d61459fd4bf6a0aa4e.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d6705bac5da767ff271b66c0f01ff6ed6352515e)
Diffstat (limited to 'libtdenetwork/gpgmepp/verificationresult.h')
-rw-r--r-- | libtdenetwork/gpgmepp/verificationresult.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libtdenetwork/gpgmepp/verificationresult.h b/libtdenetwork/gpgmepp/verificationresult.h index 70269df3..1bc61a69 100644 --- a/libtdenetwork/gpgmepp/verificationresult.h +++ b/libtdenetwork/gpgmepp/verificationresult.h @@ -36,7 +36,7 @@ namespace GpgME { class Error; class Signature; - class KDE_EXPORT VerificationResult : public Result { + class TDE_EXPORT VerificationResult : public Result { public: VerificationResult( gpgme_ctx_t ctx=0, int error=0 ); explicit VerificationResult( const Error & err ); @@ -55,9 +55,9 @@ namespace GpgME { Private * d; }; - KDE_EXPORT std::ostream & operator<<( std::ostream & os, const VerificationResult & result ); + TDE_EXPORT std::ostream & operator<<( std::ostream & os, const VerificationResult & result ); - class KDE_EXPORT Signature { + class TDE_EXPORT Signature { friend class VerificationResult; Signature( VerificationResult::Private * parent, unsigned int index ); public: @@ -113,10 +113,10 @@ namespace GpgME { unsigned int idx; }; - KDE_EXPORT std::ostream & operator<<( std::ostream & os, const Signature & sig ); - KDE_EXPORT std::ostream & operator<<( std::ostream & os, Signature::Summary summary ); + TDE_EXPORT std::ostream & operator<<( std::ostream & os, const Signature & sig ); + TDE_EXPORT std::ostream & operator<<( std::ostream & os, Signature::Summary summary ); - class KDE_EXPORT Signature::Notation { + class TDE_EXPORT Signature::Notation { friend class Signature; Notation( VerificationResult::Private * parent, unsigned int sindex, unsigned int nindex ); public: @@ -137,7 +137,7 @@ namespace GpgME { unsigned int nidx; }; - KDE_EXPORT std::ostream & operator<<( std::ostream & os, const Signature::Notation & nota ); + TDE_EXPORT std::ostream & operator<<( std::ostream & os, const Signature::Notation & nota ); } |