summaryrefslogtreecommitdiffstats
path: root/libtdenetwork/gpgmepp/encryptionresult.h
diff options
context:
space:
mode:
Diffstat (limited to 'libtdenetwork/gpgmepp/encryptionresult.h')
-rw-r--r--libtdenetwork/gpgmepp/encryptionresult.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libtdenetwork/gpgmepp/encryptionresult.h b/libtdenetwork/gpgmepp/encryptionresult.h
index 4339bef5..745ce09b 100644
--- a/libtdenetwork/gpgmepp/encryptionresult.h
+++ b/libtdenetwork/gpgmepp/encryptionresult.h
@@ -27,14 +27,14 @@
#include <vector>
#include <iosfwd>
-#include <tdepimmacros.h>
+#include <kdemacros.h>
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 );
}