From: Unknown (RO) Date: Tue, 25 Aug 1998 22:24:50 +0000 (+0000) Subject: Missing typecast from return. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5104949d8a39b36bdaade45536453eeb89817959 Missing typecast from return. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/objstrm.cpp b/src/common/objstrm.cpp index 824cd28fa6..07fa7f9a19 100644 --- a/src/common/objstrm.cpp +++ b/src/common/objstrm.cpp @@ -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);