qt: Put attributes before declarations

* lang/qt/src/downloadjob.h (DownloadJob::start): Move QGPGME_DEPRECATED
before the whole function declaration.
--
This commit is contained in:
Ingo Klöcker 2024-10-23 10:12:23 +02:00
parent c4b39a7795
commit 7d02ba8a93
No known key found for this signature in database
GPG Key ID: F5A5D1692277A1E9

View File

@ -93,7 +93,7 @@ public:
only empty strings or anything other than fingerprints, the only empty strings or anything other than fingerprints, the
result is undefined. 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: Q_SIGNALS:
void result(const GpgME::Error &result, const QByteArray &keyData, const QString &auditLogAsHtml = QString(), const GpgME::Error &auditLogError = GpgME::Error()); void result(const GpgME::Error &result, const QByteArray &keyData, const QString &auditLogAsHtml = QString(), const GpgME::Error &auditLogError = GpgME::Error());