diff options
Diffstat (limited to 'libtdenetwork/gpgmepp/eventloopinteractor.h')
-rw-r--r-- | libtdenetwork/gpgmepp/eventloopinteractor.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libtdenetwork/gpgmepp/eventloopinteractor.h b/libtdenetwork/gpgmepp/eventloopinteractor.h index 37acc0f8..9343b501 100644 --- a/libtdenetwork/gpgmepp/eventloopinteractor.h +++ b/libtdenetwork/gpgmepp/eventloopinteractor.h @@ -19,13 +19,12 @@ #ifndef __GPGMEPP_EVENTLOOPINTERACTOR_H__ #define __GPGMEPP_EVENTLOOPINTERACTOR_H__ -#include <kdemacros.h> +#include <tdemacros.h> namespace GpgME { class Context; class Error; - class TrustItem; class Key; /*! \file eventloopinteractor.h @@ -38,7 +37,7 @@ namespace GpgME { IO Callback handling and one for gpgme events. The IO Callback interface consists of the three methods \c actOn(), \c registerWatcher() and \c unregisterWatcher(). The event - interface consists of the three methods \c nextTrustItemEvent(), + interface consists of the two methods \c nextKeyEvent() and \c operationDoneEvent(). \sect General Usage @@ -102,7 +101,7 @@ namespace GpgME { */ - class KDE_EXPORT EventLoopInteractor { + class TDE_EXPORT EventLoopInteractor { protected: EventLoopInteractor(); public: @@ -130,7 +129,6 @@ namespace GpgME { // Event Handler Interface // - virtual void nextTrustItemEvent( Context * context, const TrustItem & item ) = 0; virtual void nextKeyEvent( Context * context, const Key & key ) = 0; virtual void operationDoneEvent( Context * context, const Error & e ) = 0; |