summaryrefslogtreecommitdiffstats
path: root/libtdenetwork/gpgmepp/signingresult.h
diff options
context:
space:
mode:
Diffstat (limited to 'libtdenetwork/gpgmepp/signingresult.h')
-rw-r--r--libtdenetwork/gpgmepp/signingresult.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libtdenetwork/gpgmepp/signingresult.h b/libtdenetwork/gpgmepp/signingresult.h
index 1ee7a8de..3a35c3d5 100644
--- a/libtdenetwork/gpgmepp/signingresult.h
+++ b/libtdenetwork/gpgmepp/signingresult.h
@@ -30,7 +30,7 @@
#include <vector>
#include <iosfwd>
-#include <tdepimmacros.h>
+#include <kdemacros.h>
namespace GpgME {
@@ -38,7 +38,7 @@ namespace GpgME {
class CreatedSignature;
class InvalidSigningKey;
- class KDE_EXPORT SigningResult : public Result {
+ class TDE_EXPORT SigningResult : public Result {
public:
SigningResult( gpgme_ctx_t ctx=0, int error=0 );
explicit SigningResult( const Error & err );
@@ -60,9 +60,9 @@ namespace GpgME {
Private * d;
};
- KDE_EXPORT std::ostream & operator<<( std::ostream & os, const SigningResult & result );
+ TDE_EXPORT std::ostream & operator<<( std::ostream & os, const SigningResult & result );
- class KDE_EXPORT InvalidSigningKey {
+ class TDE_EXPORT InvalidSigningKey {
friend class SigningResult;
InvalidSigningKey( SigningResult::Private * parent, unsigned int index );
public:
@@ -82,9 +82,9 @@ namespace GpgME {
unsigned int idx;
};
- KDE_EXPORT std::ostream & operator<<( std::ostream & os, const InvalidSigningKey & key );
+ TDE_EXPORT std::ostream & operator<<( std::ostream & os, const InvalidSigningKey & key );
- class KDE_EXPORT CreatedSignature {
+ class TDE_EXPORT CreatedSignature {
friend class SigningResult;
CreatedSignature( SigningResult::Private * parent, unsigned int index );
public:
@@ -117,7 +117,7 @@ namespace GpgME {
unsigned int idx;
};
- KDE_EXPORT std::ostream & operator<<( std::ostream & os, const CreatedSignature & sig );
+ TDE_EXPORT std::ostream & operator<<( std::ostream & os, const CreatedSignature & sig );
}