From: Vadim Zeitlin Date: Mon, 2 Mar 2009 16:22:30 +0000 (+0000) Subject: compilation fix after GetEditableWindow() signature change X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/586a789446defcb426d6ce6e94ea6b8b2bef3e57 compilation fix after GetEditableWindow() signature change git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59272 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/richtext/richtextctrl.h b/include/wx/richtext/richtextctrl.h index b308b57d87..ec5507cf68 100644 --- a/include/wx/richtext/richtextctrl.h +++ b/include/wx/richtext/richtextctrl.h @@ -777,7 +777,7 @@ public: virtual WXHWND GetEditHWND() const { return GetHWND(); } #endif #ifdef __WXGTK__ - virtual const wxWindow *GetEditableWindow() { return this; } + virtual wxWindow *GetEditableWindow() { return this; } virtual GtkEditable *GetEditable() const { return NULL; } #endif