diff options
author | Laurent Montel <[email protected]> | 2022-07-03 14:47:40 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2022-07-04 14:58:59 +0000 |
commit | d42323f90213157a5e847bfa89bee55a29ee8df0 (patch) | |
tree | 776652f2d53697c7250622584ac95cb09077227d /lang/qt/src/downloadjob.h | |
parent | cpp: Remove obsolete compatibility with KF5 variants (diff) | |
download | gpgme-d42323f90213157a5e847bfa89bee55a29ee8df0.tar.gz gpgme-d42323f90213157a5e847bfa89bee55a29ee8df0.zip |
qt: Add #include <QStringList> needed for building against qt6
* lang/qt/src/downloadjob.h, lang/qt/src/exportjob.h,
lang/qt/src/keylistjob.h lang/qt/src/refreshkeysjob.h: in qt6 we need
to use #include <QStringList>
--
It fixes some compile qt6 compile error.
Signed-off-by: Laurent Montel <[email protected]>
Diffstat (limited to 'lang/qt/src/downloadjob.h')
-rw-r--r-- | lang/qt/src/downloadjob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/qt/src/downloadjob.h b/lang/qt/src/downloadjob.h index 7c8bb725..b916c41d 100644 --- a/lang/qt/src/downloadjob.h +++ b/lang/qt/src/downloadjob.h @@ -38,6 +38,7 @@ #include "job.h" #include <QtCore/QByteArray> +#include <QtCore/QStringList> #include <memory> @@ -46,7 +47,6 @@ namespace GpgME class Error; } -class QStringList; class QIODevice; class QByteArray; |