From: Robin Dunn Date: Wed, 23 Jul 2003 16:55:28 +0000 (+0000) Subject: return sensible (fake) values for DBCS query methods X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/215ef7ae9a743e419f033b575df29366b265ed26 return sensible (fake) values for DBCS query methods git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22253 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/src/stc/PlatWX.cpp b/contrib/src/stc/PlatWX.cpp index 98eba98548..3c636d8064 100644 --- a/contrib/src/stc/PlatWX.cpp +++ b/contrib/src/stc/PlatWX.cpp @@ -1200,11 +1200,11 @@ bool Platform::IsDBCSLeadByte(int codePage, char ch) { } int Platform::DBCSCharLength(int codePage, const char *s) { - return 0; + return 1; } int Platform::DBCSCharMaxLength() { - return 0; + return 1; } diff --git a/src/stc/PlatWX.cpp b/src/stc/PlatWX.cpp index 98eba98548..3c636d8064 100644 --- a/src/stc/PlatWX.cpp +++ b/src/stc/PlatWX.cpp @@ -1200,11 +1200,11 @@ bool Platform::IsDBCSLeadByte(int codePage, char ch) { } int Platform::DBCSCharLength(int codePage, const char *s) { - return 0; + return 1; } int Platform::DBCSCharMaxLength() { - return 0; + return 1; }