From 66cf41cb6c05111e223deec793160446937262e4 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 26 Feb 2005 00:19:35 +0000 Subject: [PATCH] Correct GetString check message git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32376 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/listbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/listbox.cpp b/src/msw/listbox.cpp index 360767c00f..1b5d0e4819 100644 --- a/src/msw/listbox.cpp +++ b/src/msw/listbox.cpp @@ -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);