summaryrefslogtreecommitdiffstats
path: root/include/Platform.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-12-09 01:40:38 +0100
committerSlávek Banko <slavek.banko@axis.cz>2021-12-09 02:07:16 +0100
commit347f0b28701932eba7eb063d9093e446b81debae (patch)
treeb6941843b550f83221b13a3b2643b5a95cd428db /include/Platform.h
parent5da5cb1c824c608159126a82011d8a8943b360e0 (diff)
downloadtqscintilla-347f0b28701932eba7eb063d9093e446b81debae.tar.gz
tqscintilla-347f0b28701932eba7eb063d9093e446b81debae.zip
Rename Qt => TQt.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'include/Platform.h')
-rw-r--r--include/Platform.h12
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
};