Avoid core dumps when SetImageList is used.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@26588 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2004-04-03 16:09:05 +00:00
parent c840833a66
commit a209e1a011

View File

@@ -343,12 +343,14 @@ bool wxNotebook::SetPageImage (
} // end of wxNotebook::SetPageImage
void wxNotebook::SetImageList (
wxImageList* WXUNUSED(pImageList)
wxImageList* pImageList
)
{
//
// Does nothing under OS/2
//
//
// Does not really do anything yet, but at least we need to
// update the base class.
//
wxNotebookBase::SetImageList(pImageList);
} // end of wxNotebook::SetImageList
// ----------------------------------------------------------------------------