]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix the selection validity check in wxSingleChoiceDialog.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Mar 2010 11:40:19 +0000 (11:40 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Mar 2010 11:40:19 +0000 (11:40 +0000)
Fix the typo ("> 0" was used instead of ">= 0") introduced in r63731.

Closes #11844.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63734 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/choicdgg.cpp

index 073e669417ee38d1cf061aabb2706212489c56d2..79f7019d0d5a8fe5fb2ab223aba82cc52993d0da 100644 (file)
@@ -531,7 +531,7 @@ bool wxSingleChoiceDialog::Create( wxWindow *parent,
 // Set the selection
 void wxSingleChoiceDialog::SetSelection(int sel)
 {
-    wxCHECK_RET( sel > 0 && (unsigned)sel < m_listbox->GetCount(),
+    wxCHECK_RET( sel >= 0 && (unsigned)sel < m_listbox->GetCount(),
                  "Invalid initial selection" );
 
     m_listbox->SetSelection(sel);