From 5104949d8a39b36bdaade45536453eeb89817959 Mon Sep 17 00:00:00 2001 From: "Unknown (RO)" Date: Tue, 25 Aug 1998 22:24:50 +0000 Subject: [PATCH] Missing typecast from return. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/objstrm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.2