diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-30 10:31:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-30 11:47:06 +0100 |
commit | 6b2006c26713793867cfa2527d2d9c67e94ddb7d (patch) | |
tree | 5ac2d1b3808a63fac73c3269e501d5448c2d3124 /vcl | |
parent | 9eb8839cc41824c4cedb1360a80ed88fa269c0d6 (diff) |
CreateAccessible just forwards to the parent impl already
Change-Id: I74bce8dc7b3e97eaea3964f476b3d3e3233100df
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/helpwin.hxx | 2 | ||||
-rw-r--r-- | vcl/source/app/help.cxx | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/vcl/inc/helpwin.hxx b/vcl/inc/helpwin.hxx index 329472f3af94..a04eb71ab949 100644 --- a/vcl/inc/helpwin.hxx +++ b/vcl/inc/helpwin.hxx @@ -53,8 +53,6 @@ private: 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 ); diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx index 6483a977a874..c41ff9faf38d 100644 --- a/vcl/source/app/help.cxx +++ b/vcl/source/app/help.cxx @@ -468,11 +468,6 @@ OUString HelpTextWindow::GetText() const return maHelpText; } -::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > HelpTextWindow::CreateAccessible() -{ - return FloatingWindow::CreateAccessible(); -} - void ImplShowHelpWindow( vcl::Window* pParent, sal_uInt16 nHelpWinStyle, QuickHelpFlags nStyle, const OUString& rHelpText, const OUString& rStatusText, const Point& rScreenPos, const Rectangle* pHelpArea ) |