]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listbox.cpp
fix for crash when using wxEXEC_NODISABLE
[wxWidgets.git] / src / msw / listbox.cpp
index 6e50fde3e0af5c3288bd00357f91ec362524d40f..1b5d0e4819c49ac705bdea53ab17a5eba9e08d50 100644 (file)
@@ -390,7 +390,7 @@ void wxListBox::Free()
     }
 }
 
-void wxListBox::SetSelection(int N, bool select)
+void wxListBox::DoSetSelection(int N, bool select)
 {
     wxCHECK_RET( N == wxNOT_FOUND ||
                     (N >= 0 && N < m_noItems),
@@ -507,7 +507,7 @@ int wxListBox::GetSelection() const
 wxString wxListBox::GetString(int N) const
 {
     wxCHECK_MSG( N >= 0 && N < m_noItems, wxEmptyString,
-                 wxT("invalid index in wxListBox::GetClientData") );
+                 wxT("invalid index in wxListBox::GetString") );
 
     int len = ListBox_GetTextLen(GetHwnd(), N);