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/qgpgmesignjob.h | |
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 '')
-rw-r--r-- | lang/qt/src/qgpgmesignjob.h | 10 |
1 files changed, 5 insertions, 5 deletions
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: |