diff options
author | Neil <nyamatongwe@gmail.com> | 2013-06-29 13:17:30 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-06-29 13:17:30 +1000 |
commit | 20e2e85b8ea5c08b796453ea6b903801e8e13feb (patch) | |
tree | 20802e3051feb1e56994fb8b63b3708aee23bf26 /include/Platform.h | |
parent | 27a777578407d9d5d60cd4ef50ee68adf47fc264 (diff) | |
download | scintilla-mirror-20e2e85b8ea5c08b796453ea6b903801e8e13feb.tar.gz |
Include PLAT_TK for implementation on Tk platform.
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Platform.h b/include/Platform.h index 30c4e0337..311b1c423 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -13,6 +13,7 @@ // PLAT_GTK_WIN32 is defined additionally when running PLAT_GTK under Win32 // PLAT_WIN = Win32 API on Win32 OS // PLAT_WX is wxWindows on any supported platform +// PLAT_TK = Tcl/TK on Linux or Win32 #define PLAT_GTK 0 #define PLAT_GTK_WIN32 0 @@ -23,6 +24,7 @@ #define PLAT_QT 0 #define PLAT_FOX 0 #define PLAT_CURSES 0 +#define PLAT_TK 0 #if defined(FOX) #undef PLAT_FOX @@ -40,6 +42,10 @@ #undef PLAT_QT #define PLAT_QT 1 +#elif defined(TK) +#undef PLAT_TK +#define PLAT_TK 1 + #elif defined(GTK) #undef PLAT_GTK #define PLAT_GTK 1 |