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