Fixed a void* to wxObject* conversion error in a return causing compile break across all ports

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5017 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
1999-12-17 15:35:48 +00:00
parent 17d8ee1cbd
commit 2063a4a0ca

View File

@@ -142,7 +142,7 @@ public:
{
if ( m_toolStyle == wxTOOL_STYLE_CONTROL )
{
return m_control->GetClientData();
return (wxObject*)m_control->GetClientData();
}
else
{