From: Robin Dunn Date: Thu, 2 May 2002 23:56:00 +0000 (+0000) Subject: These methods should be public X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e4a55e2136300929798d0222b47f4f3e30f6275b These methods should be public git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15342 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/frame.h b/include/wx/frame.h index dfd1df99d6..0735c82f8a 100644 --- a/include/wx/frame.h +++ b/include/wx/frame.h @@ -110,6 +110,10 @@ public: virtual void SetStatusWidths(int n, const int widths_field[]); void PushStatusText(const wxString &text, int number = 0); void PopStatusText(int number = 0); + + // set the status bar pane the help will be shown in + void SetStatusBarPane(int n) { m_statusBarPane = n; } + int GetStatusBarPane() const { return m_statusBarPane; } #endif // wxUSE_STATUSBAR // toolbar functions @@ -195,9 +199,6 @@ protected: wxStatusBar *m_frameStatusBar; #endif // wxUSE_STATUSBAR - // set the status bar pane the help will be shown in - void SetStatusBarPane(int n) { m_statusBarPane = n; } - int GetStatusBarPane() const { return m_statusBarPane; } int m_statusBarPane;