wxMac doesn't need UseNativeStatusBar hack

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21834 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-07-10 01:00:24 +00:00
parent bc92cdf992
commit e4b712e245
3 changed files with 0 additions and 20 deletions

View File

@@ -87,11 +87,6 @@ public:
const wxString& name = wxStatusLineNameStr);
virtual void PositionStatusBar();
// Hint to tell framework which status bar to use
// TODO: should this go into a wxFrameworkSettings class perhaps?
static void UseNativeStatusBar(bool useNative) { m_useNativeStatusBar = useNative; };
static bool UsesNativeStatusBar() { return m_useNativeStatusBar; };
#endif // wxUSE_STATUSBAR
// tooltip management
@@ -117,9 +112,6 @@ protected:
virtual void AttachMenuBar(wxMenuBar *menubar);
protected:
#if wxUSE_STATUSBAR
static bool m_useNativeStatusBar;
#endif // wxUSE_STATUSBAR
// the last focused child: we restore focus to it on activation
wxWindow *m_winLastFocused;