diff options
author | nyamatongwe <devnull@localhost> | 2012-05-17 13:25:50 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-05-17 13:25:50 +1000 |
commit | 5f4b7521685a0f532b275a43ef44dbaf0d773029 (patch) | |
tree | 19216714c57bfb7be02778e2b11d3a29d3ff5577 /include/Platform.h | |
parent | 6641b235e141849ce768b9fe005ea67c3e50e441 (diff) | |
download | scintilla-mirror-5f4b7521685a0f532b275a43ef44dbaf0d773029.tar.gz |
Added PLAT_QT for Qt builds.
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Platform.h b/include/Platform.h index 654c4870a..80733ef75 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -20,6 +20,7 @@ #define PLAT_MACOSX 0 #define PLAT_WIN 0 #define PLAT_WX 0 +#define PLAT_QT 0 #define PLAT_FOX 0 #if defined(FOX) @@ -34,6 +35,10 @@ #undef PLAT_GTK #define PLAT_GTK 1 +#elif defined(SCINTILLA_QT) +#undef PLAT_QT +#define PLAT_QT 1 + #if defined(__WIN32__) || defined(_MSC_VER) #undef PLAT_GTK_WIN32 #define PLAT_GTK_WIN32 1 |