diff options
author | nyamatongwe <devnull@localhost> | 2012-06-13 10:18:51 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-06-13 10:18:51 +1000 |
commit | 7d6cd7e6f0d6dc576b10a4ab489d02974e5fbea4 (patch) | |
tree | e475ef270aa56ad5a88509888f9755ccb3b9128e | |
parent | f3fe016c73a0d17e80cbf0211943b84a1de6b9d7 (diff) | |
download | scintilla-mirror-7d6cd7e6f0d6dc576b10a4ab489d02974e5fbea4.tar.gz |
Moved Qt platform section as it was interfering with GTK+ sub-platforms.
-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 |