aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Klöcker <[email protected]>2024-10-23 08:12:23 +0000
committerIngo Klöcker <[email protected]>2024-10-23 08:12:23 +0000
commit7d02ba8a9308b25140f6d1b9a5ad5c14f0b36374 (patch)
tree6f5270b38c8c0e749169ebc5de6e8f1def65f796
parentcpp: Put attributes before declarations (diff)
downloadgpgme-7d02ba8a9308b25140f6d1b9a5ad5c14f0b36374.tar.gz
gpgme-7d02ba8a9308b25140f6d1b9a5ad5c14f0b36374.zip
qt: Put attributes before declarations
* lang/qt/src/downloadjob.h (DownloadJob::start): Move QGPGME_DEPRECATED before the whole function declaration. --
-rw-r--r--lang/qt/src/downloadjob.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/qt/src/downloadjob.h b/lang/qt/src/downloadjob.h
index b916c41d..dc1201ee 100644
--- a/lang/qt/src/downloadjob.h
+++ b/lang/qt/src/downloadjob.h
@@ -93,7 +93,7 @@ public:
only empty strings or anything other than fingerprints, the
result is undefined.
*/
- virtual QGPGME_DEPRECATED_EXPORT GpgME::Error start(const QStringList &fingerprints) = 0;
+ QGPGME_DEPRECATED virtual GpgME::Error start(const QStringList &fingerprints) = 0;
Q_SIGNALS:
void result(const GpgME::Error &result, const QByteArray &keyData, const QString &auditLogAsHtml = QString(), const GpgME::Error &auditLogError = GpgME::Error());