diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-04-24 16:27:42 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-04-24 16:27:42 +0000 |
commit | 3c46c8acb9d2c3b7737f921bef2cc28069a72d76 (patch) | |
tree | 696dcbc55d39394331f567e5acfe1bde87914bbe /comphelper | |
parent | caf449573d5e76414a6149fd6daa4dc771db2be3 (diff) |
INTEGRATION: CWS uaa02 (1.3.8); FILE MERGED
2003/04/11 15:39:16 mt 1.3.8.2: #108656# Moved accessibility from drafts to final
2003/04/10 11:59:41 mt 1.3.8.1: #108656# Moved Accessibility module from drafts to final
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/accessibleselectionhelper.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/comphelper/source/misc/accessibleselectionhelper.cxx b/comphelper/source/misc/accessibleselectionhelper.cxx index 544d1b0cea2c..2dd8896b2045 100644 --- a/comphelper/source/misc/accessibleselectionhelper.cxx +++ b/comphelper/source/misc/accessibleselectionhelper.cxx @@ -2,9 +2,9 @@ * * $RCSfile: accessibleselectionhelper.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: hr $ $Date: 2003-03-19 15:58:36 $ + * last change: $Author: vg $ $Date: 2003-04-24 17:27:42 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -71,7 +71,7 @@ namespace comphelper using namespace ::com::sun::star::uno; using namespace ::com::sun::star::awt; using namespace ::com::sun::star::lang; - using namespace ::drafts::com::sun::star::accessibility; + using namespace ::com::sun::star::accessibility; //===================================================================== //= OCommonAccessibleSelection @@ -142,7 +142,7 @@ namespace comphelper } //-------------------------------------------------------------------- - void SAL_CALL OCommonAccessibleSelection::deselectSelectedAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException) + void SAL_CALL OCommonAccessibleSelection::deselectAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException) { implSelect( nSelectedChildIndex, sal_False ); } @@ -214,10 +214,10 @@ namespace comphelper } //-------------------------------------------------------------------- - void SAL_CALL OAccessibleSelectionHelper::deselectSelectedAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException) + void SAL_CALL OAccessibleSelectionHelper::deselectAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException) { OExternalLockGuard aGuard( this ); - OCommonAccessibleSelection::deselectSelectedAccessibleChild( nSelectedChildIndex ); + OCommonAccessibleSelection::deselectAccessibleChild( nSelectedChildIndex ); } //......................................................................... |