]> git.saurik.com Git - wxWidgets.git/commitdiff
better check of parameter in Delete() (2nd part of patch 646145)
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 6 Dec 2002 20:59:06 +0000 (20:59 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 6 Dec 2002 20:59:06 +0000 (20:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18068 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/univ/listbox.cpp

index 9a519bcc22ddbbda5429e8edfb7eb4d5d28533c5..7ae71b51fe04672cda2ac7e7605abddda5c23165 100644 (file)
@@ -274,7 +274,8 @@ void wxListBox::Clear()
 
 void wxListBox::Delete(int n)
 {
 
 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)
 
     // do it before removing the index as otherwise the last item will not be
     // refreshed (as GetCount() will be decremented)