From 7d02ba8a9308b25140f6d1b9a5ad5c14f0b36374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20Kl=C3=B6cker?= Date: Wed, 23 Oct 2024 10:12:23 +0200 Subject: [PATCH] qt: Put attributes before declarations * lang/qt/src/downloadjob.h (DownloadJob::start): Move QGPGME_DEPRECATED before the whole function declaration. -- --- lang/qt/src/downloadjob.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());