diff --git a/include/wx/toolbook.h b/include/wx/toolbook.h index fd868226cb..365fed48f0 100644 --- a/include/wx/toolbook.h +++ b/include/wx/toolbook.h @@ -81,7 +81,6 @@ public: int imageId = NO_IMAGE) wxOVERRIDE; virtual int SetSelection(size_t n) wxOVERRIDE { return DoSetSelection(n, SetSelection_SendEvent); } virtual int ChangeSelection(size_t n) wxOVERRIDE { return DoSetSelection(n); } - virtual void SetImageList(wxImageList *imageList) wxOVERRIDE; virtual bool DeleteAllPages() wxOVERRIDE; virtual int HitTest(const wxPoint& pt, long *flags = NULL) const wxOVERRIDE; diff --git a/src/generic/toolbkg.cpp b/src/generic/toolbkg.cpp index 51895710e0..1ca04469b4 100644 --- a/src/generic/toolbkg.cpp +++ b/src/generic/toolbkg.cpp @@ -173,15 +173,6 @@ bool wxToolbook::SetPageImage(size_t n, int imageId) return true; } -// ---------------------------------------------------------------------------- -// image list stuff -// ---------------------------------------------------------------------------- - -void wxToolbook::SetImageList(wxImageList *imageList) -{ - wxBookCtrlBase::SetImageList(imageList); -} - // ---------------------------------------------------------------------------- // selection // ----------------------------------------------------------------------------