diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-01-29 14:26:59 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-01-29 14:26:59 +0000 |
commit | fccefb26ac24d191067f39f698a21faed37657da (patch) | |
tree | 2a459e7391c7802d3b746ee2e75e6f0ede1b0422 /accessibility | |
parent | 0ee7f14a3cfe6cf6abf1e486663d5747fc6ddba6 (diff) |
INTEGRATION: CWS fwk80_SRC680 (1.3.36); FILE MERGED
2008/01/21 08:32:08 pb 1.3.36.1: fix: #i83756# createAccessibleContext( VCLXFixedHyperlink* )
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/source/helper/acc_factory.cxx | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/accessibility/source/helper/acc_factory.cxx b/accessibility/source/helper/acc_factory.cxx index 4be6d4c16a33..e124546d79be 100644 --- a/accessibility/source/helper/acc_factory.cxx +++ b/accessibility/source/helper/acc_factory.cxx @@ -4,9 +4,9 @@ * * $RCSfile: acc_factory.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2007-07-04 16:24:24 $ + * last change: $Author: rt $ $Date: 2008-01-29 15:26:59 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -62,6 +62,9 @@ #ifndef ACCESSIBILITY_STANDARD_VCLXACCESSIBLEEDIT_HXX #include <accessibility/standard/vclxaccessibleedit.hxx> #endif +#ifndef ACCESSIBILITY_STANDARD_VCLXACCESSIBLEFIXEDHYPERLINK_HXX +#include <accessibility/standard/vclxaccessiblefixedhyperlink.hxx> +#endif #ifndef ACCESSIBILITY_STANDARD_VCLXACCESSIBLEFIXEDTEXT_HXX #include <accessibility/standard/vclxaccessiblefixedtext.hxx> #endif @@ -181,6 +184,8 @@ namespace accessibility virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > createAccessibleContext( VCLXFixedText* _pXWindow ); virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > + createAccessibleContext( VCLXFixedHyperlink* _pXWindow ); + virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > createAccessibleContext( VCLXScrollBar* _pXWindow ); virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > createAccessibleContext( VCLXEdit* _pXWindow ); @@ -360,6 +365,12 @@ namespace accessibility } //-------------------------------------------------------------------- + Reference< XAccessibleContext > AccessibleFactory::createAccessibleContext( VCLXFixedHyperlink* _pXWindow ) + { + return new VCLXAccessibleFixedHyperlink( _pXWindow ); + } + + //-------------------------------------------------------------------- Reference< XAccessibleContext > AccessibleFactory::createAccessibleContext( VCLXScrollBar* _pXWindow ) { return new VCLXAccessibleScrollBar( _pXWindow ); |