diff options
author | Ingo Klöcker <[email protected]> | 2022-01-17 13:41:17 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2022-01-17 13:41:17 +0000 |
commit | 9c03bde06be97403a8c392a3befc6c203bcdce6d (patch) | |
tree | d87c353767af75df16053ff8ba4b30782bb3567c /lang/qt/src/qgpgmeimportjob.cpp | |
parent | tests: Fix generation of keys without expiration (diff) | |
download | gpgme-9c03bde06be97403a8c392a3befc6c203bcdce6d.tar.gz gpgme-9c03bde06be97403a8c392a3befc6c203bcdce6d.zip |
qt: Fix build without installed GpgME++ headers
* lang/qt/src/importjob.h, lang/qt/src/wkdlookupresult.h: Include
headers of GpgME++ without "gpgme++/" prefix when building QGpgme.
* lang/qt/src/qgpgmeimportjob.cpp, lang/qt/src/qgpgmewkdlookupjob.cpp,
lang/qt/src/wkdlookupresult.cpp, lang/qt/tests/t-import.cpp: Include
headers of GpgME++ without "gpgme++/" prefix.
--
Diffstat (limited to 'lang/qt/src/qgpgmeimportjob.cpp')
-rw-r--r-- | lang/qt/src/qgpgmeimportjob.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/qt/src/qgpgmeimportjob.cpp b/lang/qt/src/qgpgmeimportjob.cpp index ebd8a269..d609c5f1 100644 --- a/lang/qt/src/qgpgmeimportjob.cpp +++ b/lang/qt/src/qgpgmeimportjob.cpp @@ -40,9 +40,9 @@ #include "dataprovider.h" -#include <gpgme++/context.h> -#include <gpgme++/data.h> -#include <gpgme++/key.h> +#include <context.h> +#include <data.h> +#include <key.h> using namespace QGpgME; using namespace GpgME; |