From 432ffd59431185d52f5add254f8b12b993a1065c Mon Sep 17 00:00:00 2001 From: Vladimir Glazounov Date: Thu, 24 Apr 2003 16:26:39 +0000 Subject: INTEGRATION: CWS uaa02 (1.5.8); FILE MERGED 2003/04/10 11:59:39 mt 1.5.8.1: #108656# Moved Accessibility module from drafts to final --- comphelper/source/misc/accessiblecomponenthelper.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/comphelper/source/misc/accessiblecomponenthelper.cxx b/comphelper/source/misc/accessiblecomponenthelper.cxx index a20b3c5ee32b..d39871dfd6d3 100644 --- a/comphelper/source/misc/accessiblecomponenthelper.cxx +++ b/comphelper/source/misc/accessiblecomponenthelper.cxx @@ -2,9 +2,9 @@ * * $RCSfile: accessiblecomponenthelper.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: hr $ $Date: 2003-03-19 15:58:36 $ + * last change: $Author: vg $ $Date: 2003-04-24 17:26:39 $ * * 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; //===================================================================== //= OCommonAccessibleComponent @@ -96,7 +96,7 @@ namespace comphelper } //-------------------------------------------------------------------- - sal_Bool SAL_CALL OCommonAccessibleComponent::contains( const Point& _rPoint ) throw (RuntimeException) + sal_Bool SAL_CALL OCommonAccessibleComponent::containsPoint( const Point& _rPoint ) throw (RuntimeException) { OExternalLockGuard aGuard( this ); Rectangle aBounds( implGetBounds() ); @@ -170,9 +170,9 @@ namespace comphelper // (order matters: the first is the class name, the second is the class doing the ref counting) //-------------------------------------------------------------------- - sal_Bool SAL_CALL OAccessibleComponentHelper::contains( const Point& _rPoint ) throw (RuntimeException) + sal_Bool SAL_CALL OAccessibleComponentHelper::containsPoint( const Point& _rPoint ) throw (RuntimeException) { - return OCommonAccessibleComponent::contains( _rPoint ); + return OCommonAccessibleComponent::containsPoint( _rPoint ); } //-------------------------------------------------------------------- @@ -219,9 +219,9 @@ namespace comphelper // (order matters: the first is the class name, the second is the class doing the ref counting) //-------------------------------------------------------------------- - sal_Bool SAL_CALL OAccessibleExtendedComponentHelper::contains( const Point& _rPoint ) throw (RuntimeException) + sal_Bool SAL_CALL OAccessibleExtendedComponentHelper::containsPoint( const Point& _rPoint ) throw (RuntimeException) { - return OCommonAccessibleComponent::contains( _rPoint ); + return OCommonAccessibleComponent::containsPoint( _rPoint ); } //-------------------------------------------------------------------- -- cgit