fixed wrong return value of wxComboBox::GetClientObject
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13163 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -293,7 +293,7 @@ wxClientData* wxComboBox::GetClientObject( int n )
|
|||||||
{
|
{
|
||||||
wxCHECK_MSG( m_widget != NULL, (wxClientData*)NULL, wxT("invalid combobox") );
|
wxCHECK_MSG( m_widget != NULL, (wxClientData*)NULL, wxT("invalid combobox") );
|
||||||
|
|
||||||
wxNode *node = m_clientDataList.Nth( n );
|
wxNode *node = m_clientObjectList.Nth( n );
|
||||||
if (!node) return (wxClientData*) NULL;
|
if (!node) return (wxClientData*) NULL;
|
||||||
|
|
||||||
return (wxClientData*) node->Data();
|
return (wxClientData*) node->Data();
|
||||||
|
@@ -293,7 +293,7 @@ wxClientData* wxComboBox::GetClientObject( int n )
|
|||||||
{
|
{
|
||||||
wxCHECK_MSG( m_widget != NULL, (wxClientData*)NULL, wxT("invalid combobox") );
|
wxCHECK_MSG( m_widget != NULL, (wxClientData*)NULL, wxT("invalid combobox") );
|
||||||
|
|
||||||
wxNode *node = m_clientDataList.Nth( n );
|
wxNode *node = m_clientObjectList.Nth( n );
|
||||||
if (!node) return (wxClientData*) NULL;
|
if (!node) return (wxClientData*) NULL;
|
||||||
|
|
||||||
return (wxClientData*) node->Data();
|
return (wxClientData*) node->Data();
|
||||||
|
Reference in New Issue
Block a user