From: Włodzimierz Skiba Date: Fri, 17 Dec 2004 12:09:55 +0000 (+0000) Subject: Follow wxTreeCtrl API. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e70e15cc58ad1be1c10addba59d22e370852f388 Follow wxTreeCtrl API. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31047 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/samples/ogl/studio/project.h b/contrib/samples/ogl/studio/project.h index b52ae259ef..44cb15b8c7 100644 --- a/contrib/samples/ogl/studio/project.h +++ b/contrib/samples/ogl/studio/project.h @@ -30,9 +30,9 @@ public: ~csProjectTreeCtrl(); - wxImageList& GetImageList() const { return (wxImageList&) m_imageList; } + wxImageList *GetImageList() const { return (wxImageList *)&m_imageList; } protected: - wxImageList m_imageList; + wxImageList m_imageList; DECLARE_EVENT_TABLE() };