diff options
author | nyamatongwe <devnull@localhost> | 2001-10-28 01:28:28 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-10-28 01:28:28 +0000 |
commit | 32056de116bf65368ccff2e887d29fbf81075bed (patch) | |
tree | 493a0791cb7757d3e8397e242eef5c4f764a5aee /src/DocumentAccessor.cxx | |
parent | 8320a969df7367a3f62ea1c26929c7d03cda2549 (diff) | |
download | scintilla-mirror-32056de116bf65368ccff2e887d29fbf81075bed.tar.gz |
Removed platform-specific headers from Platform.h and thus stopped
visibility of these headers to most code.
Diffstat (limited to 'src/DocumentAccessor.cxx')
-rw-r--r-- | src/DocumentAccessor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DocumentAccessor.cxx b/src/DocumentAccessor.cxx index c187f2a44..e8930c23d 100644 --- a/src/DocumentAccessor.cxx +++ b/src/DocumentAccessor.cxx @@ -30,7 +30,7 @@ bool DocumentAccessor::InternalIsLeadByte(char ch) { // same so none is considered a lead byte. return false; else - return IsDBCSLeadByteEx(codePage, ch); + return Platform::IsDBCSLeadByte(codePage, ch); } #else // PLAT_GTK or PLAT_WX |