Added missing const to wxGTK's wxMDIChildFrame::GetToolbar; added bc_ide.txt instructions.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1710 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-02-17 19:26:42 +00:00
parent 7e84f02dfd
commit b8ecf3e993
4 changed files with 62 additions and 3 deletions

View File

@@ -137,7 +137,7 @@ class wxMDIChildFrame: public wxFrame
// no toolbar bars
virtual wxToolBar* CreateToolBar( long WXUNUSED(style), wxWindowID WXUNUSED(id),
const wxString& WXUNUSED(name) ) { return (wxToolBar*)NULL; }
virtual wxToolBar *GetToolBar() { return (wxToolBar*)NULL; }
virtual wxToolBar *GetToolBar() const { return (wxToolBar*)NULL; }
// no icon
void SetIcon( const wxIcon &icon ) { m_icon = icon; }