From 37f68a7945997974f744e9b0b2211a2130980c5f Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Wed, 7 Nov 2007 22:32:40 +0000 Subject: [PATCH] Fixed compilation error (patch #1827541). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/os2/choice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os2/choice.cpp b/src/os2/choice.cpp index 18650fc..9f0360a 100644 --- a/src/os2/choice.cpp +++ b/src/os2/choice.cpp @@ -207,7 +207,7 @@ void wxChoice::SetString(unsigned int n, const wxString& rsStr) LONG nIndexType = 0; void* pData; - if ( m_clientDataItemsType != wxClientData_None ) + if ( HasClientData() ) { pData = DoGetItemClientData(n); } -- 2.7.4