diff options
author | nyamatongwe <devnull@localhost> | 2009-06-10 23:10:05 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-06-10 23:10:05 +0000 |
commit | 5e53732eeae0f715f343b536dc0e17295c3b55a4 (patch) | |
tree | cf23d9b945aaf734d24515c69100676c074f0a17 | |
parent | f2e13eed5cd366a40e60454f569fc2938f8205f7 (diff) | |
download | scintilla-mirror-5e53732eeae0f715f343b536dc0e17295c3b55a4.tar.gz |
Put back PLAT_FOX.
-rw-r--r-- | include/Platform.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/Platform.h b/include/Platform.h index 874921bf1..1d4df4884 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -19,8 +19,13 @@ #define PLAT_MACOSX 0 #define PLAT_WIN 0 #define PLAT_WX 0 +#define PLAT_FOX 0 -#if defined(__WX__) +#if defined(FOX) +#undef PLAT_FOX +#define PLAT_FOX 1 + +#elif defined(__WX__) #undef PLAT_WX #define PLAT_WX 1 |