diff options
| author | Andre Heinecke <[email protected]> | 2016-05-10 12:32:22 +0000 | 
|---|---|---|
| committer | Andre Heinecke <[email protected]> | 2016-05-10 12:32:22 +0000 | 
| commit | b7d5c2cced796d4092a9f424368fc999165f9d13 (patch) | |
| tree | 64bd7d6edc5bf259442b96919b8ca16fb8ce1250 /lang/qt/src | |
| parent | Qt: Make Protocol class public API (diff) | |
| download | gpgme-b7d5c2cced796d4092a9f424368fc999165f9d13.tar.gz gpgme-b7d5c2cced796d4092a9f424368fc999165f9d13.zip | |
Qt: Fix unkonwn doxygen keyword warnings
--
Reimp is not a keqword and we inherit documentation anyway.
Diffstat (limited to '')
25 files changed, 63 insertions, 73 deletions
| diff --git a/lang/qt/src/dataprovider.h b/lang/qt/src/dataprovider.h index 672980a8..337f2646 100644 --- a/lang/qt/src/dataprovider.h +++ b/lang/qt/src/dataprovider.h @@ -50,18 +50,13 @@ public:  private:      // these shall only be accessed through the dataprovider      // interface, where they're public: -    /*! \reimp */      bool isSupported(Operation) const      {          return true;      } -    /*! \reimp */      ssize_t read(void *buffer, size_t bufSize); -    /*! \reimp */      ssize_t write(const void *buffer, size_t bufSize); -    /*! \reimp */      off_t seek(off_t offset, int whence); -    /*! \reimp */      void release();  private: @@ -83,15 +78,10 @@ public:  private:      // these shall only be accessed through the dataprovider      // interface, where they're public: -    /*! \reimp */      bool isSupported(Operation) const; -    /*! \reimp */      ssize_t read(void *buffer, size_t bufSize); -    /*! \reimp */      ssize_t write(const void *buffer, size_t bufSize); -    /*! \reimp */      off_t seek(off_t offset, int whence); -    /*! \reimp */      void release();  private: diff --git a/lang/qt/src/hierarchicalkeylistjob.h b/lang/qt/src/hierarchicalkeylistjob.h index 7cc519a8..2ec187d2 100644 --- a/lang/qt/src/hierarchicalkeylistjob.h +++ b/lang/qt/src/hierarchicalkeylistjob.h @@ -101,7 +101,7 @@ public:  private Q_SLOTS:      void slotResult(const GpgME::KeyListResult &);      void slotNextKey(const GpgME::Key &key); -    /*! \reimp from Job */ +    /* from Job */      void slotCancel() Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/multideletejob.h b/lang/qt/src/multideletejob.h index fca73d00..8915cd1a 100644 --- a/lang/qt/src/multideletejob.h +++ b/lang/qt/src/multideletejob.h @@ -82,7 +82,7 @@ public:      */      GpgME::Error start(const std::vector<GpgME::Key> &keys, bool allowSecretKeyDeletion = false); -    /*! \reimp from Job */ +    /* from Job */      void slotCancel() Q_DECL_OVERRIDE;  Q_SIGNALS: diff --git a/lang/qt/src/qgpgmeadduseridjob.h b/lang/qt/src/qgpgmeadduseridjob.h index f77b3c8b..294eb6c4 100644 --- a/lang/qt/src/qgpgmeadduseridjob.h +++ b/lang/qt/src/qgpgmeadduseridjob.h @@ -57,7 +57,7 @@ public:      explicit QGpgMEAddUserIDJob(GpgME::Context *context);      ~QGpgMEAddUserIDJob(); -    /*! \reimp from AddUserIDJob */ +    /* from AddUserIDJob */      GpgME::Error start(const GpgME::Key &key, const QString &name, const QString &email, const QString &comment) Q_DECL_OVERRIDE;  };  } diff --git a/lang/qt/src/qgpgmechangeexpiryjob.h b/lang/qt/src/qgpgmechangeexpiryjob.h index fab12593..4abdf78f 100644 --- a/lang/qt/src/qgpgmechangeexpiryjob.h +++ b/lang/qt/src/qgpgmechangeexpiryjob.h @@ -57,7 +57,7 @@ public:      explicit QGpgMEChangeExpiryJob(GpgME::Context *context);      ~QGpgMEChangeExpiryJob(); -    /*! \reimp from ChangeExpiryJob */ +    /* from ChangeExpiryJob */      GpgME::Error start(const GpgME::Key &key, const QDateTime &expiry) Q_DECL_OVERRIDE;  }; diff --git a/lang/qt/src/qgpgmechangeownertrustjob.h b/lang/qt/src/qgpgmechangeownertrustjob.h index 7ff03a3f..77406165 100644 --- a/lang/qt/src/qgpgmechangeownertrustjob.h +++ b/lang/qt/src/qgpgmechangeownertrustjob.h @@ -57,7 +57,7 @@ public:      explicit QGpgMEChangeOwnerTrustJob(GpgME::Context *context);      ~QGpgMEChangeOwnerTrustJob(); -    /*! \reimp from ChangeOwnerTrustJob */ +    /* from ChangeOwnerTrustJob */      GpgME::Error start(const GpgME::Key &key, GpgME::Key::OwnerTrust trust) Q_DECL_OVERRIDE;  };  } diff --git a/lang/qt/src/qgpgmechangepasswdjob.h b/lang/qt/src/qgpgmechangepasswdjob.h index 1531e760..e37789e1 100644 --- a/lang/qt/src/qgpgmechangepasswdjob.h +++ b/lang/qt/src/qgpgmechangepasswdjob.h @@ -57,7 +57,7 @@ public:      explicit QGpgMEChangePasswdJob(GpgME::Context *context);      ~QGpgMEChangePasswdJob(); -    /*! \reimp from ChangePasswdJob */ +    /* from ChangePasswdJob */      GpgME::Error start(const GpgME::Key &key) Q_DECL_OVERRIDE;  }; diff --git a/lang/qt/src/qgpgmedecryptjob.h b/lang/qt/src/qgpgmedecryptjob.h index e7ed04fd..5335e849 100644 --- a/lang/qt/src/qgpgmedecryptjob.h +++ b/lang/qt/src/qgpgmedecryptjob.h @@ -63,17 +63,17 @@ public:      explicit QGpgMEDecryptJob(GpgME::Context *context);      ~QGpgMEDecryptJob(); -    /*! \reimp from DecryptJob */ +    /* from DecryptJob */      GpgME::Error start(const QByteArray &cipherText) Q_DECL_OVERRIDE; -    /*! \reimp from DecryptJob */ +    /* from DecryptJob */      void start(const std::shared_ptr<QIODevice> &cipherText, const std::shared_ptr<QIODevice> &plainText) Q_DECL_OVERRIDE; -    /*! \reimp from DecryptJob */ +    /* from DecryptJob */      GpgME::DecryptionResult exec(const QByteArray &cipherText,                                   QByteArray &plainText) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &r) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmedecryptverifyjob.h b/lang/qt/src/qgpgmedecryptverifyjob.h index 4a209b95..de2bce79 100644 --- a/lang/qt/src/qgpgmedecryptverifyjob.h +++ b/lang/qt/src/qgpgmedecryptverifyjob.h @@ -68,17 +68,17 @@ public:      explicit QGpgMEDecryptVerifyJob(GpgME::Context *context);      ~QGpgMEDecryptVerifyJob(); -    /*! \reimp from DecryptVerifyJob */ +    /* from DecryptVerifyJob */      GpgME::Error start(const QByteArray &cipherText) Q_DECL_OVERRIDE; -    /*! \reimp from DecryptVerifyJob */ +    /* from DecryptVerifyJob */      void start(const std::shared_ptr<QIODevice> &cipherText, const std::shared_ptr<QIODevice> &plainText) Q_DECL_OVERRIDE; -    /*! \reimp from DecryptVerifyJob */ +    /* from DecryptVerifyJob */      std::pair<GpgME::DecryptionResult, GpgME::VerificationResult>      exec(const QByteArray &cipherText, QByteArray &plainText) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &r) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmedeletejob.h b/lang/qt/src/qgpgmedeletejob.h index a2b0d108..992442fa 100644 --- a/lang/qt/src/qgpgmedeletejob.h +++ b/lang/qt/src/qgpgmedeletejob.h @@ -62,7 +62,7 @@ public:      explicit QGpgMEDeleteJob(GpgME::Context *context);      ~QGpgMEDeleteJob(); -    /*! \reimp from DeleteJob */ +    /* from DeleteJob */      GpgME::Error start(const GpgME::Key &key, bool allowSecretKeyDeletion) Q_DECL_OVERRIDE;  }; diff --git a/lang/qt/src/qgpgmedownloadjob.h b/lang/qt/src/qgpgmedownloadjob.h index b1120d17..40911909 100644 --- a/lang/qt/src/qgpgmedownloadjob.h +++ b/lang/qt/src/qgpgmedownloadjob.h @@ -57,10 +57,10 @@ public:      explicit QGpgMEDownloadJob(GpgME::Context *context);      ~QGpgMEDownloadJob(); -    /*! \reimp from DownloadJob */ +    /* from DownloadJob */      GpgME::Error start(const QStringList &fingerprints) Q_DECL_OVERRIDE; -    /*! \reimp from DownloadJob */ +    /* from DownloadJob */      GpgME::Error start(const QByteArray &fingerprint, const std::shared_ptr<QIODevice> &keyData) Q_DECL_OVERRIDE;  }; diff --git a/lang/qt/src/qgpgmeencryptjob.h b/lang/qt/src/qgpgmeencryptjob.h index fc6ad5ff..d35a41ba 100644 --- a/lang/qt/src/qgpgmeencryptjob.h +++ b/lang/qt/src/qgpgmeencryptjob.h @@ -68,25 +68,25 @@ public:      explicit QGpgMEEncryptJob(GpgME::Context *context);      ~QGpgMEEncryptJob(); -    /*! \reimp from EncryptJob */ +    /* from EncryptJob */      GpgME::Error start(const std::vector<GpgME::Key> &recipients,                         const QByteArray &plainText, bool alwaysTrust) Q_DECL_OVERRIDE; -    /*! \reimp from EncryptJob */ +    /* from EncryptJob */      void start(const std::vector<GpgME::Key> &recipients,                 const std::shared_ptr<QIODevice> &plainText,                 const std::shared_ptr<QIODevice> &cipherText,                 bool alwaysTrust) Q_DECL_OVERRIDE; -    /*! \reimp from EncryptJob */ +    /* from EncryptJob */      GpgME::EncryptionResult exec(const std::vector<GpgME::Key> &recipients,                                   const QByteArray &plainText, bool alwaysTrust,                                   QByteArray &cipherText) Q_DECL_OVERRIDE; -    /*! \reimp from EncryptJob */ +    /* from EncryptJob */      void setOutputIsBase64Encoded(bool on) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &r) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmeexportjob.h b/lang/qt/src/qgpgmeexportjob.h index 703687ce..7561054d 100644 --- a/lang/qt/src/qgpgmeexportjob.h +++ b/lang/qt/src/qgpgmeexportjob.h @@ -57,7 +57,7 @@ public:      explicit QGpgMEExportJob(GpgME::Context *context);      ~QGpgMEExportJob(); -    /*! \reimp from ExportJob */ +    /* from ExportJob */      GpgME::Error start(const QStringList &patterns) Q_DECL_OVERRIDE;  }; diff --git a/lang/qt/src/qgpgmeimportfromkeyserverjob.h b/lang/qt/src/qgpgmeimportfromkeyserverjob.h index f50dae0b..8c9f944d 100644 --- a/lang/qt/src/qgpgmeimportfromkeyserverjob.h +++ b/lang/qt/src/qgpgmeimportfromkeyserverjob.h @@ -63,13 +63,13 @@ public:      explicit QGpgMEImportFromKeyserverJob(GpgME::Context *context);      ~QGpgMEImportFromKeyserverJob(); -    /*! \reimp from ImportFromKeyserverJob */ +    /* from ImportFromKeyserverJob */      GpgME::Error start(const std::vector<GpgME::Key> &keys) Q_DECL_OVERRIDE; -    /*! \reimp from ImportFromKeyserverJob */ +    /* from ImportFromKeyserverJob */      GpgME::ImportResult exec(const std::vector<GpgME::Key> &keys) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &r) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmeimportjob.h b/lang/qt/src/qgpgmeimportjob.h index 5a55fc91..424cb507 100644 --- a/lang/qt/src/qgpgmeimportjob.h +++ b/lang/qt/src/qgpgmeimportjob.h @@ -63,13 +63,13 @@ public:      explicit QGpgMEImportJob(GpgME::Context *context);      ~QGpgMEImportJob(); -    /*! \reimp from ImportJob */ +    /* from ImportJob */      GpgME::Error start(const QByteArray &keyData) Q_DECL_OVERRIDE; -    /*! \reimp from ImportJob */ +    /* from ImportJob */      GpgME::ImportResult exec(const QByteArray &keyData) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &r) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmekeygenerationjob.h b/lang/qt/src/qgpgmekeygenerationjob.h index fb09b032..808b7144 100644 --- a/lang/qt/src/qgpgmekeygenerationjob.h +++ b/lang/qt/src/qgpgmekeygenerationjob.h @@ -63,7 +63,7 @@ public:      explicit QGpgMEKeyGenerationJob(GpgME::Context *context);      ~QGpgMEKeyGenerationJob(); -    /*! \reimp from KeygenerationJob */ +    /* from KeygenerationJob */      GpgME::Error start(const QString ¶meters) Q_DECL_OVERRIDE;  }; diff --git a/lang/qt/src/qgpgmekeylistjob.h b/lang/qt/src/qgpgmekeylistjob.h index 292f2bbb..cbe1e94d 100644 --- a/lang/qt/src/qgpgmekeylistjob.h +++ b/lang/qt/src/qgpgmekeylistjob.h @@ -68,13 +68,13 @@ public:      explicit QGpgMEKeyListJob(GpgME::Context *context);      ~QGpgMEKeyListJob(); -    /*! \reimp from KeyListJob */ +    /* from KeyListJob */      GpgME::Error start(const QStringList &patterns, bool secretOnly) Q_DECL_OVERRIDE; -    /*! \reimp from KeyListJob */ +    /* from KeyListJob */      GpgME::KeyListResult exec(const QStringList &patterns, bool secretOnly, std::vector<GpgME::Key> &keys) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &result) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmelistallkeysjob.h b/lang/qt/src/qgpgmelistallkeysjob.h index 310eabd6..1fc69d41 100644 --- a/lang/qt/src/qgpgmelistallkeysjob.h +++ b/lang/qt/src/qgpgmelistallkeysjob.h @@ -68,13 +68,13 @@ public:      explicit QGpgMEListAllKeysJob(GpgME::Context *context);      ~QGpgMEListAllKeysJob(); -    /*! \reimp from ListAllKeysJob */ +    /* from ListAllKeysJob */      GpgME::Error start(bool mergeKeys) Q_DECL_OVERRIDE; -    /*! \reimp from ListAllKeysJob */ +    /* from ListAllKeysJob */      GpgME::KeyListResult exec(std::vector<GpgME::Key> &pub, std::vector<GpgME::Key> &sec, bool mergeKeys) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &result) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmerefreshkeysjob.h b/lang/qt/src/qgpgmerefreshkeysjob.h index da928f36..2a54e38e 100644 --- a/lang/qt/src/qgpgmerefreshkeysjob.h +++ b/lang/qt/src/qgpgmerefreshkeysjob.h @@ -54,11 +54,11 @@ public:      QGpgMERefreshKeysJob();      ~QGpgMERefreshKeysJob(); -    /*! \reimp from RefreshKeysJob */ +    /* from RefreshKeysJob */      GpgME::Error start(const QStringList &patterns) Q_DECL_OVERRIDE;  private Q_SLOTS: -    /*! \reimp from Job */ +    /* from Job */      void slotCancel() Q_DECL_OVERRIDE;      void slotStatus(QProcess *, const QString &, const QStringList &); diff --git a/lang/qt/src/qgpgmesecretkeyexportjob.h b/lang/qt/src/qgpgmesecretkeyexportjob.h index c58e8532..ad53f99d 100644 --- a/lang/qt/src/qgpgmesecretkeyexportjob.h +++ b/lang/qt/src/qgpgmesecretkeyexportjob.h @@ -57,11 +57,11 @@ public:      QGpgMESecretKeyExportJob(bool armour, const QString &charset);      ~QGpgMESecretKeyExportJob(); -    /*! \reimp from ExportJob */ +    /* from ExportJob */      GpgME::Error start(const QStringList &patterns) Q_DECL_OVERRIDE;  private Q_SLOTS: -    /*! \reimp from Job */ +    /* from Job */      void slotCancel() Q_DECL_OVERRIDE;      void slotStdout(); diff --git a/lang/qt/src/qgpgmesignencryptjob.h b/lang/qt/src/qgpgmesignencryptjob.h index bf1439ca..49177d37 100644 --- a/lang/qt/src/qgpgmesignencryptjob.h +++ b/lang/qt/src/qgpgmesignencryptjob.h @@ -75,12 +75,12 @@ public:      explicit QGpgMESignEncryptJob(GpgME::Context *context);      ~QGpgMESignEncryptJob(); -    /*! \reimp from SignEncryptJob */ +    /* from SignEncryptJob */      GpgME::Error start(const std::vector<GpgME::Key> &signers,                         const std::vector<GpgME::Key> &recipients,                         const QByteArray &plainText, bool alwaysTrust) Q_DECL_OVERRIDE; -    /*! \reimp from SignEncryptJob */ +    /* from SignEncryptJob */      void start(const std::vector<GpgME::Key> &signers,                 const std::vector<GpgME::Key> &recipients,                 const std::shared_ptr<QIODevice> &plainText, @@ -93,10 +93,10 @@ public:           const QByteArray &plainText, bool alwaysTrust,           QByteArray &cipherText) Q_DECL_OVERRIDE; -    /*! \reimp from SignEncryptJob */ +    /* from SignEncryptJob */      void setOutputIsBase64Encoded(bool on) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &r) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmesignjob.h b/lang/qt/src/qgpgmesignjob.h index 8ad35edd..1d4a1747 100644 --- a/lang/qt/src/qgpgmesignjob.h +++ b/lang/qt/src/qgpgmesignjob.h @@ -68,27 +68,27 @@ public:      explicit QGpgMESignJob(GpgME::Context *context);      ~QGpgMESignJob(); -    /*! \reimp from SignJob */ +    /* from SignJob */      GpgME::Error start(const std::vector<GpgME::Key> &signers,                         const QByteArray &plainText,                         GpgME::SignatureMode mode) Q_DECL_OVERRIDE; -    /*! \reimp from SignJob */ +    /* from SignJob */      void start(const std::vector<GpgME::Key> &signers,                 const std::shared_ptr<QIODevice> &plainText,                 const std::shared_ptr<QIODevice> &signature,                 GpgME::SignatureMode mode) Q_DECL_OVERRIDE; -    /*! \reimp from SignJob */ +    /* from SignJob */      GpgME::SigningResult exec(const std::vector<GpgME::Key> &signers,                                const QByteArray &plainText,                                GpgME::SignatureMode mode,                                QByteArray &signature) Q_DECL_OVERRIDE; -    /*! \reimp from SignJob */ +    /* from SignJob */      void setOutputIsBase64Encoded(bool on) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &r) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmesignkeyjob.h b/lang/qt/src/qgpgmesignkeyjob.h index 6b610acd..6cdb7db8 100644 --- a/lang/qt/src/qgpgmesignkeyjob.h +++ b/lang/qt/src/qgpgmesignkeyjob.h @@ -63,22 +63,22 @@ public:      explicit QGpgMESignKeyJob(GpgME::Context *context);      ~QGpgMESignKeyJob(); -    /*! \reimp from SignKeyJob */ +    /* from SignKeyJob */      GpgME::Error start(const GpgME::Key &key) Q_DECL_OVERRIDE; -    /*! \reimp from SignKeyJob */ +    /* from SignKeyJob */      void setUserIDsToSign(const std::vector<unsigned int> &idsToSign) Q_DECL_OVERRIDE; -    /*! \reimp from SignKeyJob */ +    /* from SignKeyJob */      void setCheckLevel(unsigned int checkLevel) Q_DECL_OVERRIDE; -    /*! \reimp from SignKeyJob */ +    /* from SignKeyJob */      void setExportable(bool exportable) Q_DECL_OVERRIDE; -    /*! \reimp from SignKeyJob */ +    /* from SignKeyJob */      void setSigningKey(const GpgME::Key &key) Q_DECL_OVERRIDE; -    /*! \reimp from SignKeyJob */ +    /* from SignKeyJob */      void setNonRevocable(bool nonRevocable) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmeverifydetachedjob.h b/lang/qt/src/qgpgmeverifydetachedjob.h index 6f6257c9..051caf07 100644 --- a/lang/qt/src/qgpgmeverifydetachedjob.h +++ b/lang/qt/src/qgpgmeverifydetachedjob.h @@ -63,17 +63,17 @@ public:      explicit QGpgMEVerifyDetachedJob(GpgME::Context *context);      ~QGpgMEVerifyDetachedJob(); -    /*! \reimp from VerifyDetachedJob */ +    /* from VerifyDetachedJob */      GpgME::Error start(const QByteArray &signature, const QByteArray &signedData) Q_DECL_OVERRIDE; -    /*! \reimp from VerifyDetachedJob */ +    /* from VerifyDetachedJob */      void start(const std::shared_ptr<QIODevice> &signature, const std::shared_ptr<QIODevice> &signedData) Q_DECL_OVERRIDE; -    /*! \reimp from VerifyDetachedJob */ +    /* from VerifyDetachedJob */      GpgME::VerificationResult exec(const QByteArray &signature,                                     const QByteArray &signedData) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &r) Q_DECL_OVERRIDE;  private: diff --git a/lang/qt/src/qgpgmeverifyopaquejob.h b/lang/qt/src/qgpgmeverifyopaquejob.h index 2374cee5..87c94a33 100644 --- a/lang/qt/src/qgpgmeverifyopaquejob.h +++ b/lang/qt/src/qgpgmeverifyopaquejob.h @@ -63,16 +63,16 @@ public:      explicit QGpgMEVerifyOpaqueJob(GpgME::Context *context);      ~QGpgMEVerifyOpaqueJob(); -    /*! \reimp from VerifyOpaqueJob */ +    /* from VerifyOpaqueJob */      GpgME::Error start(const QByteArray &signedData) Q_DECL_OVERRIDE; -    /*! \reimp from VerifyOpaqueJob */ +    /* from VerifyOpaqueJob */      void start(const std::shared_ptr<QIODevice> &signedData, const std::shared_ptr<QIODevice> &plainText) Q_DECL_OVERRIDE; -    /*! \reimp form VerifyOpaqueJob */ +    /* form VerifyOpaqueJob */      GpgME::VerificationResult exec(const QByteArray &signedData, QByteArray &plainData) Q_DECL_OVERRIDE; -    /*! \reimp from ThreadedJobMixin */ +    /* from ThreadedJobMixin */      void resultHook(const result_type &r) Q_DECL_OVERRIDE;  private: | 
