correct access for virtuals

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43853 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2006-12-07 07:22:55 +00:00
parent f4c4697652
commit bc48a5d75e
3 changed files with 7 additions and 19 deletions

View File

@@ -51,25 +51,22 @@ public:
const wxValidator& val = wxDefaultValidator,
const wxString& name = wxCollapsiblePaneNameStr);
public: // public API
wxSize DoGetBestSize() const;
void Collapse(bool collapse = true);
bool IsCollapsed() const;
void SetLabel(const wxString &str);
void OnSize(wxSizeEvent&);
protected:
virtual wxSize DoGetBestSize() const;
public: // used by GTK callbacks
bool m_bIgnoreNextChange;
wxSize m_szCollapsed;
private:
void OnSize(wxSizeEvent&);
DECLARE_DYNAMIC_CLASS(wxCollapsiblePane)
DECLARE_EVENT_TABLE()
};
#endif
// _WX_COLLAPSABLE_PANEL_H_GTK_
#endif // _WX_COLLAPSABLE_PANEL_H_GTK_