wxStatusBar95(wxWindow *parent,
wxWindowID id = wxID_ANY,
long style = wxST_SIZEGRIP,
- const wxString& name = wxEmptyString)
+ const wxString& name = wxStatusBarNameStr)
{
(void)Create(parent, id, style, name);
}
bool Create(wxWindow *parent,
wxWindowID id = wxID_ANY,
long style = wxST_SIZEGRIP,
- const wxString& name = wxEmptyString);
+ const wxString& name = wxStatusBarNameStr);
virtual ~wxStatusBar95();
void CopyFieldsWidth(const int widths[]);
void SetFieldsWidth();
- // override base class virtual
- void DoMoveWindow(int x, int y, int width, int height);
+ // override some base class virtuals
+ virtual wxSize DoGetBestSize() const;
+ virtual void DoMoveWindow(int x, int y, int width, int height);
private:
DECLARE_DYNAMIC_CLASS_NO_COPY(wxStatusBar95)