summaryrefslogtreecommitdiffstats
path: root/libtdenetwork/gpgmepp/eventloopinteractor.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-19 21:15:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-08-21 11:31:08 +0900
commit89161d921313f3fc05386baa09ea59010c9fc494 (patch)
tree48754dc793913ad11b5f13e227792e11d4c987d0 /libtdenetwork/gpgmepp/eventloopinteractor.h
parent6905cc3eb1948181a182e3a7cd0f9a9383d29a50 (diff)
downloadtdepim-89161d92.tar.gz
tdepim-89161d92.zip
tdenetwork: remove trust item and trust list related code. This resolves issue #162.
libgpgme-dev 2.0 completely removed the code related to trust item and trust list. Moreover according the their author, that code was only working for a brief time around 2003. In view of that, the code in TDE has been fully removed rather than making conditional based on the library version available. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9441cfb0db89a24d2a01c85416677a56c9b269b0)
Diffstat (limited to 'libtdenetwork/gpgmepp/eventloopinteractor.h')
-rw-r--r--libtdenetwork/gpgmepp/eventloopinteractor.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/libtdenetwork/gpgmepp/eventloopinteractor.h b/libtdenetwork/gpgmepp/eventloopinteractor.h
index 6a696a40..9343b501 100644
--- a/libtdenetwork/gpgmepp/eventloopinteractor.h
+++ b/libtdenetwork/gpgmepp/eventloopinteractor.h
@@ -25,7 +25,6 @@ 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
@@ -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;