diff options
author | nyamatongwe <unknown> | 2012-06-13 10:18:51 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-06-13 10:18:51 +1000 |
commit | 7c23631ea875b7226dbf930d55873dfa7b8852e6 (patch) | |
tree | 48037a65878d9751b70dd6668a6d00bc3a13966b /include/Platform.h | |
parent | bfc2f6ad73d6580231d9cc5b6af0cbcdcaedc923 (diff) | |
download | scintilla-mirror-7c23631ea875b7226dbf930d55873dfa7b8852e6.tar.gz |
Moved Qt platform section as it was interfering with GTK+ sub-platforms.
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/Platform.h b/include/Platform.h index 4cd2c5c0f..1b5dfbe3d 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -31,14 +31,14 @@ #undef PLAT_WX #define PLAT_WX 1 -#elif defined(GTK) -#undef PLAT_GTK -#define PLAT_GTK 1 - #elif defined(SCINTILLA_QT) #undef PLAT_QT #define PLAT_QT 1 +#elif defined(GTK) +#undef PLAT_GTK +#define PLAT_GTK 1 + #if defined(__WIN32__) || defined(_MSC_VER) #undef PLAT_GTK_WIN32 #define PLAT_GTK_WIN32 1 |