aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/src/qgpgmeencryptjob.h
diff options
context:
space:
mode:
Diffstat (limited to 'lang/qt/src/qgpgmeencryptjob.h')
-rw-r--r--lang/qt/src/qgpgmeencryptjob.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/lang/qt/src/qgpgmeencryptjob.h b/lang/qt/src/qgpgmeencryptjob.h
index cba5ec99..07b05f8f 100644
--- a/lang/qt/src/qgpgmeencryptjob.h
+++ b/lang/qt/src/qgpgmeencryptjob.h
@@ -71,34 +71,34 @@ public:
/* from EncryptJob */
GpgME::Error start(const std::vector<GpgME::Key> &recipients,
- const QByteArray &plainText, bool alwaysTrust) Q_DECL_OVERRIDE;
+ const QByteArray &plainText, bool alwaysTrust) override;
/* 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;
+ bool alwaysTrust) override;
/* from EncryptJob */
GpgME::EncryptionResult exec(const std::vector<GpgME::Key> &recipients,
const QByteArray &plainText, bool alwaysTrust,
- QByteArray &cipherText) Q_DECL_OVERRIDE;
+ QByteArray &cipherText) override;
/* from EncryptJob */
void start(const std::vector<GpgME::Key> &recipients,
const std::shared_ptr<QIODevice> &plainText,
const std::shared_ptr<QIODevice> &cipherText,
- const GpgME::Context::EncryptionFlags flags) Q_DECL_OVERRIDE;
+ const GpgME::Context::EncryptionFlags flags) override;
/* from EncryptJob */
GpgME::EncryptionResult exec(const std::vector<GpgME::Key> &recipients,
const QByteArray &plainText, const GpgME::Context::EncryptionFlags flags,
- QByteArray &cipherText) Q_DECL_OVERRIDE;
+ QByteArray &cipherText) override;
/* from EncryptJob */
- void setOutputIsBase64Encoded(bool on) Q_DECL_OVERRIDE;
+ void setOutputIsBase64Encoded(bool on) override;
/* from ThreadedJobMixin */
- void resultHook(const result_type &r) Q_DECL_OVERRIDE;
+ void resultHook(const result_type &r) override;
private:
bool mOutputIsBase64Encoded;