From e70e15cc58ad1be1c10addba59d22e370852f388 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Fri, 17 Dec 2004 12:09:55 +0000 Subject: [PATCH] Follow wxTreeCtrl API. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31047 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/samples/ogl/studio/project.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() }; -- 2.50.0