]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/listbox.cpp
First cut at printing support for wxRichTextCtrl
[wxWidgets.git] / src / univ / listbox.cpp
index 7657a08ac6cdc569717c8af40d9d6bb3d5d16c6a..0ad1318cf7b91c1f630fbd78df1fc59674b83bfb 100644 (file)
@@ -476,14 +476,22 @@ void wxListBox::DoSetSelection(int n, bool select)
 {
     if ( select )
     {
-        if ( m_selections.Index(n) == wxNOT_FOUND )
+        if ( n == wxNOT_FOUND )
+        {
+            if ( !HasMultipleSelection() )
+            {
+                // selecting wxNOT_FOUND is documented to deselect all items
+                DeselectAll();
+                return;
+            }
+        }
+        else if ( m_selections.Index(n) == wxNOT_FOUND )
         {
             if ( !HasMultipleSelection() )
             {
                 // selecting an item in a single selection listbox deselects
                 // all the others
                 DeselectAll();
-                return;
             }
 
             m_selections.Add(n);