diff options
author | Andre Heinecke <[email protected]> | 2016-07-06 09:22:10 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-07-06 09:22:10 +0000 |
commit | 7a8c04f66d382dc49d962ad18c46d7ad332ccc0f (patch) | |
tree | 851f01300d84157faea82bb18ad134a4a08f00c6 | |
parent | Qt: Fix test build with Qt < 5.4.0 (diff) | |
download | gpgme-7a8c04f66d382dc49d962ad18c46d7ad332ccc0f.tar.gz gpgme-7a8c04f66d382dc49d962ad18c46d7ad332ccc0f.zip |
Revert "Qt: More robust lookup of Cpp's context.h"
* lang/qt/src/threadedjobmixin.h: Revert using full path
for context.h
--
This reverts commit 47bfbc9026b49b9918359af5fcc1621aab0d1065 as
it causes problems depending on the include path. The proper
fix will be to ensure that cpp/src is included before gpgme/src.
Diffstat (limited to '')
-rw-r--r-- | lang/qt/src/threadedjobmixin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/qt/src/threadedjobmixin.h b/lang/qt/src/threadedjobmixin.h index b29b8272..62d7f1c1 100644 --- a/lang/qt/src/threadedjobmixin.h +++ b/lang/qt/src/threadedjobmixin.h @@ -41,7 +41,7 @@ #include <QIODevice> #ifdef BUILDING_QGPGME -# include "lang/cpp/src/context.h" +# include "context.h" # include "interfaces/progressprovider.h" #else # include <gpgme++/context.h> |