From 5b53c5753239bdb509e174baa78d8c9a40f28298 Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Wed, 8 Sep 2004 15:22:31 +0000 Subject: INTEGRATION: CWS ooo20040704 (1.12.40); FILE MERGED 2004/07/02 11:30:05 cmc 1.12.40.2: #i30891# revert header and namespace change 2004/06/28 13:54:24 cmc 1.12.40.1: #i30801# allow using system stl if possible --- connectivity/source/manager/mdrivermanager.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'connectivity/source/manager') diff --git a/connectivity/source/manager/mdrivermanager.cxx b/connectivity/source/manager/mdrivermanager.cxx index 96a8721c496a..ebca706687c6 100644 --- a/connectivity/source/manager/mdrivermanager.cxx +++ b/connectivity/source/manager/mdrivermanager.cxx @@ -2,9 +2,9 @@ * * $RCSfile: mdrivermanager.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: hr $ $Date: 2004-02-04 11:50:25 $ + * last change: $Author: rt $ $Date: 2004-09-08 16:22:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -646,7 +646,7 @@ Reference< XDriver > OSDBCDriverManager::implGetDriverForURL(const ::rtl::OUStri DriverAccessArrayIterator aPos = ::std::find_if( m_aDriversBS.begin(), // begin of search range m_aDriversBS.end(), // end of search range - unary_compose< AcceptsURL, ExtractAfterLoad >( AcceptsURL( _rURL ), ExtractAfterLoad() ) + std::unary_compose< AcceptsURL, ExtractAfterLoad >( AcceptsURL( _rURL ), ExtractAfterLoad() ) // compose two functors: extract the driver from the access, then ask the resulting driver for acceptance ); @@ -661,7 +661,7 @@ Reference< XDriver > OSDBCDriverManager::implGetDriverForURL(const ::rtl::OUStri DriverCollectionIterator aPos = ::std::find_if( m_aDriversRT.begin(), // begin of search range m_aDriversRT.end(), // end of search range - unary_compose< AcceptsURL, ExtractDriverFromCollectionElement >( AcceptsURL( _rURL ), ExtractDriverFromCollectionElement() ) + std::unary_compose< AcceptsURL, ExtractDriverFromCollectionElement >( AcceptsURL( _rURL ), ExtractDriverFromCollectionElement() ) // compose two functors: extract the driver from the access, then ask the resulting driver for acceptance ); -- cgit