diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-06-27 14:06:01 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-06-27 14:06:01 +0000 |
commit | bd8b042e7e7e906bdb9d9e864749ed836c84e1c9 (patch) | |
tree | 8411b8b87e08e765017637ed4c4918b8f986234b /toolkit | |
parent | 29418108ba95a2064e911199767ab9f7a2deed34 (diff) |
INTEGRATION: CWS a11ysep (1.7.264); FILE MERGED
2006/10/05 11:27:14 fs 1.7.264.4: #i10000# post-resync problem
2006/09/21 21:23:06 fs 1.7.264.3: RESYNC: (1.8-1.9); FILE MERGED
2005/09/27 06:21:03 fs 1.7.264.2: RESYNC: (1.7-1.8); FILE MERGED
2005/03/07 07:53:20 fs 1.7.264.1: #i44293# +maAccessibleFactoryAccess
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/inc/toolkit/helper/unowrapper.hxx | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/toolkit/inc/toolkit/helper/unowrapper.hxx b/toolkit/inc/toolkit/helper/unowrapper.hxx index 4cedddf05139..8638b9bbc541 100644 --- a/toolkit/inc/toolkit/helper/unowrapper.hxx +++ b/toolkit/inc/toolkit/helper/unowrapper.hxx @@ -4,9 +4,9 @@ * * $RCSfile: unowrapper.hxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: hr $ $Date: 2006-06-19 22:57:32 $ + * last change: $Author: hr $ $Date: 2007-06-27 15:06:01 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -48,6 +48,9 @@ #ifndef _COM_SUN_STAR_ACCESSIBILITY_XACCESSIBLE_HPP_ #include <com/sun/star/accessibility/XAccessible.hpp> #endif +#ifndef TOOLKIT_HELPER_ACCESSIBILITY_CLIENT_HXX +#include <toolkit/helper/accessibilityclient.hxx> +#endif #include <vcl/unowrap.hxx> #include <vcl/window.hxx> @@ -59,13 +62,13 @@ class UnoWrapper : public UnoWrapperBase { private: - ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit> mxToolkit; + ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit> mxToolkit; + ::toolkit::AccessibilityClient maAccessibleFactoryAccess; public: UnoWrapper( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit>& rxToolkit ); - virtual ~UnoWrapper(); - void Destroy(); + virtual void Destroy(); // Toolkit virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit> GetVCLToolkit(); @@ -98,7 +101,10 @@ public: // Accessibility virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > - CreateAccessible( Menu* pMenu, sal_Bool bIsMenuBar ); + CreateAccessible( Menu* pMenu, sal_Bool bIsMenuBar ); + +private: + virtual ~UnoWrapper(); }; #endif // _TOOLKIT_HELPER_UNOWRAPPER_HXX_ |