summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/browser/formadapter.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-01-29 16:12:22 +0000
committerRüdiger Timm <rt@openoffice.org>2008-01-29 16:12:22 +0000
commit3132e6660b730ab5d27029e92782512eed045c57 (patch)
tree906d62d1f8759db88e5396d80dbf921485841f39 /dbaccess/source/ui/browser/formadapter.cxx
parent16c4b72019294caddae6e4cbc8c03283f79b2da2 (diff)
INTEGRATION: CWS oj30 (1.14.114); FILE MERGED
2008/01/10 14:19:01 oj 1.14.114.1: #i85085# add std
Diffstat (limited to 'dbaccess/source/ui/browser/formadapter.cxx')
-rw-r--r--dbaccess/source/ui/browser/formadapter.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/browser/formadapter.cxx b/dbaccess/source/ui/browser/formadapter.cxx
index 4391d9887679..7ee3171d1e5a 100644
--- a/dbaccess/source/ui/browser/formadapter.cxx
+++ b/dbaccess/source/ui/browser/formadapter.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: formadapter.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: rt $ $Date: 2007-07-06 08:04:19 $
+ * last change: $Author: rt $ $Date: 2008-01-29 17:12:22 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1178,7 +1178,7 @@ void SAL_CALL SbaXFormAdapter::dispose() throw( RuntimeException )
m_aContainerListeners.disposeAndClear(aEvt);
// dispose all childs
- for ( vector< Reference< ::com::sun::star::form::XFormComponent > >::iterator aIter = m_aChildren.begin();
+ for ( ::std::vector< Reference< ::com::sun::star::form::XFormComponent > >::iterator aIter = m_aChildren.begin();
aIter != m_aChildren.end();
++aIter
)
@@ -1547,7 +1547,7 @@ void SbaXFormAdapter::implInsert(const Any& aElement, sal_Int32 nIndex, const ::
// -------------------------------------------------------------------------
sal_Int32 SbaXFormAdapter::implGetPos(const ::rtl::OUString& rName)
{
- vector< ::rtl::OUString>::iterator aIter = ::std::find_if( m_aChildNames.begin(),
+ ::std::vector< ::rtl::OUString>::iterator aIter = ::std::find_if( m_aChildNames.begin(),
m_aChildNames.end(),
::std::bind2nd(::std::equal_to< rtl::OUString>(),rName));