From 20e2e85b8ea5c08b796453ea6b903801e8e13feb Mon Sep 17 00:00:00 2001 From: Neil Date: Sat, 29 Jun 2013 13:17:30 +1000 Subject: Include PLAT_TK for implementation on Tk platform. --- doc/ScintillaHistory.html | 2 ++ include/Platform.h | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 6035179f8..0503afa79 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -425,6 +425,8 @@ Igor Shaula Pavel Bulochkin Yosef Or Boczko + + Brian Griffin

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 -- cgit v1.2.3