X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/178f951f78abbc04abba3f9ff52432513c309068..dc1efb1d9f4e4ce7d8f889dad3aaab7026b73058:/include/wx/os2/frame.h diff --git a/include/wx/os2/frame.h b/include/wx/os2/frame.h index 1ff9224fac..c61b9100ab 100644 --- a/include/wx/os2/frame.h +++ b/include/wx/os2/frame.h @@ -53,7 +53,7 @@ public: virtual bool ShowFullScreen( bool bShow ,long lStyle = wxFULLSCREEN_ALL ); - virtual bool IsFullScreen(void) const { return m_fsIsShowing; }; + virtual bool IsFullScreen(void) const { return m_bFsIsShowing; }; // implementation only from now on @@ -91,9 +91,9 @@ public: // TODO: should this go into a wxFrameworkSettings class perhaps? static void UseNativeStatusBar(bool bUseNative) - { m_useNativeStatusBar = useNative; }; + { m_bUseNativeStatusBar = bUseNative; }; static bool UsesNativeStatusBar() - { return m_useNativeStatusBar; }; + { return m_bUseNativeStatusBar; }; #endif // wxUSE_STATUSBAR WXHMENU GetWinMenu() const { return m_hMenu; } @@ -131,8 +131,8 @@ public: // tooltip management #if wxUSE_TOOLTIPS - WXHWND GetToolTipCtrl(void) const { return m_hwndToolTip; } - void SetToolTipCtrl(WXHWND hHwndTT) { m_hwndToolTip = hwndTT; } + WXHWND GetToolTipCtrl(void) const { return m_hWndToolTip; } + void SetToolTipCtrl(WXHWND hHwndTT) { m_hWndToolTip = hHwndTT; } #endif // tooltips protected: @@ -194,7 +194,7 @@ protected: private: #if wxUSE_TOOLTIPS - WXHWND m_hHwndToolTip; + WXHWND m_hWndToolTip; #endif // tooltips DECLARE_EVENT_TABLE()