Missing typecast from return.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Unknown (RO)
1998-08-25 22:24:50 +00:00
parent 0d8d91a98f
commit 5104949d8a

View File

@@ -200,7 +200,7 @@ wxObject *wxObjectInputStream::GetChild(int no) const
wxObjectStreamInfo *info;
if (m_current_info->children_removed >= m_current_info->n_children)
return NULL;
return (wxObject *) NULL;
node = m_current_info->children.Nth(m_current_info->children_removed+no);