]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/stc/PlatWX.cpp
fix memory leak as Dimitri suggested
[wxWidgets.git] / contrib / src / stc / PlatWX.cpp
index 54ba588dd19e910a22f2d20d4a44d595db66d1aa..fbf1faf2a370d9db55d4eb62d7bfadcdd8298f63 100644 (file)
@@ -815,7 +815,12 @@ int ListBox::Length() {
 }
 
 void ListBox::Select(int n) {
-    GETLB(id)->SetSelection(n);
+    bool select = TRUE;
+    if (n == -1) {
+        n = 0;
+        select = FALSE;
+    }
+    GETLB(id)->SetSelection(n, select);
 #ifdef __WXGTK__
     if (n > 4)
         n = n - 4;