]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/listbox.cpp
fixes to ShowFullScreen (KDE 3.1)
[wxWidgets.git] / src / univ / listbox.cpp
index 9a519bcc22ddbbda5429e8edfb7eb4d5d28533c5..7ae71b51fe04672cda2ac7e7605abddda5c23165 100644 (file)
@@ -274,7 +274,8 @@ void wxListBox::Clear()
 
 void wxListBox::Delete(int n)
 {
-    wxCHECK_RET( n < GetCount(), _T("invalid index in wxListBox::Delete") );
+    wxCHECK_RET( n >= 0 && n < GetCount(),
+                 _T("invalid index in wxListBox::Delete") );
 
     // do it before removing the index as otherwise the last item will not be
     // refreshed (as GetCount() will be decremented)