From 15c6c2085a8261e2c4ac86d6862d1947894411e0 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Tue, 8 Feb 2011 19:44:44 +0100 Subject: more std:: -> o3tl:: build fixes --- dbaccess/source/ui/control/tabletree.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dbaccess/source/ui/control/tabletree.cxx') diff --git a/dbaccess/source/ui/control/tabletree.cxx b/dbaccess/source/ui/control/tabletree.cxx index 8e607d5a2d9d..1667a8d65ae7 100644 --- a/dbaccess/source/ui/control/tabletree.cxx +++ b/dbaccess/source/ui/control/tabletree.cxx @@ -55,6 +55,7 @@ #include #include +#include //......................................................................... namespace dbaui @@ -287,9 +288,9 @@ void OTableTreeListBox::UpdateTableList( const Reference< XConnection >& _rxConn { String sRootEntryText; TNames::const_iterator aViews = ::std::find_if(_rTables.begin(),_rTables.end(), - ::std::compose1(::std::bind2nd(::std::equal_to(),sal_False),::std::select2nd())); + ::o3tl::compose1(::std::bind2nd(::std::equal_to(),sal_False),::o3tl::select2nd())); TNames::const_iterator aTables = ::std::find_if(_rTables.begin(),_rTables.end(), - ::std::compose1(::std::bind2nd(::std::equal_to(),sal_True),::std::select2nd())); + ::o3tl::compose1(::std::bind2nd(::std::equal_to(),sal_True),::o3tl::select2nd())); if ( aViews == _rTables.end() ) sRootEntryText = String(ModuleRes(STR_ALL_TABLES)); -- cgit