diff options
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/Platform.h b/include/Platform.h index 33245b9..19a6c40 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -9,13 +9,13 @@ #ifndef PLATFORM_H #define PLATFORM_H -// PLAT_QT is TQt on any supported platform +// PLAT_TQT is TQt on any supported platform // PLAT_GTK = GTK+ on Linux or Win32 // 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 -#define PLAT_QT 0 +#define PLAT_TQT 0 #define PLAT_GTK 0 #define PLAT_GTK_WIN32 0 #define PLAT_WIN 0 @@ -27,8 +27,8 @@ #define PLAT_FOX 1 #elif defined(QT) -#undef PLAT_QT -#define PLAT_QT 1 +#undef PLAT_TQT +#define PLAT_TQT 1 #elif defined(__WX__) #undef PLAT_WX @@ -302,7 +302,7 @@ public: /** * A surface abstracts a place to draw. */ -#if defined(PLAT_QT) +#if defined(PLAT_TQT) class XPM; #endif @@ -357,7 +357,7 @@ public: virtual void SetUnicodeMode(bool unicodeMode_)=0; virtual void SetDBCSMode(int codePage)=0; -#if defined(PLAT_QT) +#if defined(PLAT_TQT) virtual void DrawXPM(PRectangle rc, const XPM *xpm)=0; #endif }; |