Avoid core dumps when SetImageList is used.

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

View File

@@ -329,12 +329,14 @@ bool wxNotebook::SetPageImage (
} // end of wxNotebook::SetPageImage } // end of wxNotebook::SetPageImage
void wxNotebook::SetImageList ( 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 } // end of wxNotebook::SetImageList
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------