]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/PlatWX.cpp
fixed return value of HandleEndSession to return true only if the message was really...
[wxWidgets.git] / src / stc / PlatWX.cpp
index e0eeab7d987da4c9f1e41272013d22d20aced064..2b478141af6e6ddc62f8e84c00752f15b7665240 100644 (file)
@@ -566,7 +566,7 @@ void ListBox::Append(char *s) {
 }
 
 int ListBox::Length() {
-    return ((wxListBox*)id)->Number();
+    return ((wxListBox*)id)->GetCount();
 }
 
 void ListBox::Select(int n) {
@@ -586,7 +586,7 @@ int ListBox::GetSelection() {
 
 int ListBox::Find(const char *prefix) {
     if (prefix) {
-        for (int x=0; x < ((wxListBox*)id)->Number(); x++) {
+        for (int x=0; x < ((wxListBox*)id)->GetCount(); x++) {
             wxString text = ((wxListBox*)id)->GetString(x);
             if (text.StartsWith(prefix))
                 return x;