diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-30 10:30:46 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-30 11:47:05 +0100 |
commit | 9eb8839cc41824c4cedb1360a80ed88fa269c0d6 (patch) | |
tree | 2ccfd8828b5a57d25d68a1046cbaa4c8732dc7a5 /vcl/inc | |
parent | 53d354e38e3f8aa8978ae570c26b865e78150de2 (diff) |
these can be private
Change-Id: I5f0501dbe14cbb4e4fda3ec30fb7e1e893faf108
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/helpwin.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/vcl/inc/helpwin.hxx b/vcl/inc/helpwin.hxx index 5889a4f74311..329472f3af94 100644 --- a/vcl/inc/helpwin.hxx +++ b/vcl/inc/helpwin.hxx @@ -43,7 +43,7 @@ private: sal_uInt16 mnHelpWinStyle; QuickHelpFlags mnStyle; -protected: +private: DECL_LINK_TYPED( TimerHdl, Timer*, void ); virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle&) SAL_OVERRIDE; @@ -53,11 +53,12 @@ protected: virtual OUString GetText() const SAL_OVERRIDE; void ImplShow(); + virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE; + virtual void dispose() SAL_OVERRIDE; public: HelpTextWindow( vcl::Window* pParent, const OUString& rText, sal_uInt16 nHelpWinStyle, QuickHelpFlags nStyle ); virtual ~HelpTextWindow(); - virtual void dispose() SAL_OVERRIDE; const OUString& GetHelpText() const { return maHelpText; } void SetHelpText( const OUString& rHelpText ); @@ -72,8 +73,6 @@ public: Size CalcOutSize() const; const Rectangle& GetHelpArea() const { return maHelpArea; } - - virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE; }; void ImplShowHelpWindow( vcl::Window* pParent, sal_uInt16 nHelpWinStyle, QuickHelpFlags nStyle, |