aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WindowAccessor.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-10-28 04:39:23 +0000
committernyamatongwe <devnull@localhost>2001-10-28 04:39:23 +0000
commitb6272aec16732b184844bd2773f410f3c0a152dd (patch)
tree219ef4a2b3d794cebeedb9a0d3baa7e79cb9a1bb /src/WindowAccessor.cxx
parent32056de116bf65368ccff2e887d29fbf81075bed (diff)
downloadscintilla-mirror-b6272aec16732b184844bd2773f410f3c0a152dd.tar.gz
Fixed Platform changes for GTK+ and hid most of the implementation of
Surface.
Diffstat (limited to 'src/WindowAccessor.cxx')
-rw-r--r--src/WindowAccessor.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WindowAccessor.cxx b/src/WindowAccessor.cxx
index cd419572c..e02bf90e4 100644
--- a/src/WindowAccessor.cxx
+++ b/src/WindowAccessor.cxx
@@ -20,7 +20,6 @@
WindowAccessor::~WindowAccessor() {
}
-#if PLAT_WIN
bool WindowAccessor::InternalIsLeadByte(char ch) {
if (SC_CP_UTF8 == codePage)
// For lexing, all characters >= 0x80 are treated the
@@ -29,13 +28,6 @@ bool WindowAccessor::InternalIsLeadByte(char ch) {
else
return Platform::IsDBCSLeadByte(codePage, ch);
}
-#else
-// PLAT_GTK or PLAT_WX
-// TODO: support DBCS under GTK+ and WX
-bool WindowAccessor::InternalIsLeadByte(char) {
- return false;
-}
-#endif
void WindowAccessor::Fill(int position) {
if (lenDoc == -1)