summaryrefslogtreecommitdiff
path: root/chart2/source/controller/dialogs/DialogModel.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2011-02-08 19:31:15 +0100
committerLuboš Luňák <l.lunak@suse.cz>2011-02-08 19:31:40 +0100
commit9dafa8b12c307d3e28eba7bdf138d5a2f8768eac (patch)
tree9cb46e543cf236108e79071a7448d668caab0809 /chart2/source/controller/dialogs/DialogModel.cxx
parentaa5968f33a850dc791c61b830d7eae4123eb29a3 (diff)
more std:: -> o3tl:: build fixes
Diffstat (limited to 'chart2/source/controller/dialogs/DialogModel.cxx')
-rw-r--r--chart2/source/controller/dialogs/DialogModel.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/chart2/source/controller/dialogs/DialogModel.cxx b/chart2/source/controller/dialogs/DialogModel.cxx
index 9e382d4427c4..8a86162061ae 100644
--- a/chart2/source/controller/dialogs/DialogModel.cxx
+++ b/chart2/source/controller/dialogs/DialogModel.cxx
@@ -59,6 +59,7 @@
#include <iterator>
#include <functional>
#include <numeric>
+#include <o3tl/compat_functional.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::chart2;
@@ -122,10 +123,10 @@ OUString lcl_ConvertRole( const OUString & rRoleString, bool bFromInternalToUI )
{
tTranslationMap::const_iterator aIt(
::std::find_if( aTranslationMap.begin(), aTranslationMap.end(),
- ::std::compose1( ::std::bind2nd(
+ ::o3tl::compose1( ::std::bind2nd(
::std::equal_to< tTranslationMap::mapped_type >(),
rRoleString ),
- ::std::select2nd< tTranslationMap::value_type >())));
+ ::o3tl::select2nd< tTranslationMap::value_type >())));
if( aIt != aTranslationMap.end())
aResult = (*aIt).first;