summaryrefslogtreecommitdiff
path: root/svx/source/accessibility
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-01-29 16:09:11 +0000
committerRüdiger Timm <rt@openoffice.org>2008-01-29 16:09:11 +0000
commiteae00510a760630e7525224436ca09691ea750ef (patch)
treef38ee70f10684294b26719bd30f7d5d495418272 /svx/source/accessibility
parentee244882e2dbfe8d91f9ee3bdd1e283ff01fc079 (diff)
INTEGRATION: CWS oj30 (1.38.98); FILE MERGED
2008/01/10 07:59:45 oj 1.38.98.1: #i85085# add std
Diffstat (limited to 'svx/source/accessibility')
-rw-r--r--svx/source/accessibility/ChildrenManagerImpl.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/accessibility/ChildrenManagerImpl.cxx b/svx/source/accessibility/ChildrenManagerImpl.cxx
index 8b96b55ba9b1..2b02bf25484c 100644
--- a/svx/source/accessibility/ChildrenManagerImpl.cxx
+++ b/svx/source/accessibility/ChildrenManagerImpl.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ChildrenManagerImpl.cxx,v $
*
- * $Revision: 1.38 $
+ * $Revision: 1.39 $
*
- * last change: $Author: hr $ $Date: 2007-11-01 13:01:16 $
+ * last change: $Author: rt $ $Date: 2008-01-29 17:09:11 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -376,7 +376,7 @@ void ChildrenManagerImpl::MergeAccessibilityInformation (
ChildDescriptorListType::iterator I, aEnd = raNewChildList.end();
for (I=raNewChildList.begin(); I != aEnd; ++I)
{
- aOldChildDescriptor = find (maVisibleChildren.begin(), maVisibleChildren.end(), *I);
+ aOldChildDescriptor = ::std::find (maVisibleChildren.begin(), maVisibleChildren.end(), *I);
// Copy accessible shape if that exists in the old descriptor.
bool bRegistrationIsNecessary = true;
@@ -498,7 +498,7 @@ void ChildrenManagerImpl::RemoveShape (const Reference<drawing::XShape>& rxShape
// Search shape in list of visible children.
ChildDescriptorListType::iterator I (
- find (maVisibleChildren.begin(), maVisibleChildren.end(),
+ ::std::find (maVisibleChildren.begin(), maVisibleChildren.end(),
ChildDescriptor (rxShape)));
if (I != maVisibleChildren.end())
{
@@ -664,7 +664,7 @@ void SAL_CALL
// Find the descriptor for the given shape.
ChildDescriptorListType::iterator I (
- find (maVisibleChildren.begin(), maVisibleChildren.end(),
+ ::std::find (maVisibleChildren.begin(), maVisibleChildren.end(),
ChildDescriptor (xShape)));
if (I != maVisibleChildren.end())
{