summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-04-24 16:26:39 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-04-24 16:26:39 +0000
commit432ffd59431185d52f5add254f8b12b993a1065c (patch)
tree2a1f79b35e7f91bb046e82a3386b43182cd66681 /comphelper
parente24e806e00afb96b75c61d2d2c9617b85edfd4cf (diff)
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
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/accessiblecomponenthelper.cxx16
1 files 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 );
}
//--------------------------------------------------------------------