]> git.saurik.com Git - wxWidgets.git/commitdiff
return sensible (fake) values for DBCS query methods
authorRobin Dunn <robin@alldunn.com>
Wed, 23 Jul 2003 16:55:28 +0000 (16:55 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 23 Jul 2003 16:55:28 +0000 (16:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22253 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/src/stc/PlatWX.cpp
src/stc/PlatWX.cpp

index 98eba98548317d43d6aa1262842000d73456684b..3c636d8064660e3384cd95b4100e856451e5ec6e 100644 (file)
@@ -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;
 }
 
 
index 98eba98548317d43d6aa1262842000d73456684b..3c636d8064660e3384cd95b4100e856451e5ec6e 100644 (file)
@@ -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;
 }