From 3c46c8acb9d2c3b7737f921bef2cc28069a72d76 Mon Sep 17 00:00:00 2001 From: Vladimir Glazounov Date: Thu, 24 Apr 2003 16:27:42 +0000 Subject: [PATCH] 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 --- comphelper/source/misc/accessibleselectionhelper.cxx | 12 ++++++------ 1 file 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 ); } //.........................................................................