diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2011-02-08 19:31:15 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-02-08 19:31:40 +0100 |
commit | 9dafa8b12c307d3e28eba7bdf138d5a2f8768eac (patch) | |
tree | 9cb46e543cf236108e79071a7448d668caab0809 /chart2/source/model | |
parent | aa5968f33a850dc791c61b830d7eae4123eb29a3 (diff) |
more std:: -> o3tl:: build fixes
Diffstat (limited to 'chart2/source/model')
-rw-r--r-- | chart2/source/model/template/ChartTypeManager.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chart2/source/model/template/ChartTypeManager.cxx b/chart2/source/model/template/ChartTypeManager.cxx index 4a866b2f0fa6..00ebab147245 100644 --- a/chart2/source/model/template/ChartTypeManager.cxx +++ b/chart2/source/model/template/ChartTypeManager.cxx @@ -54,6 +54,7 @@ #include <algorithm> #include <iterator> #include <functional> +#include <o3tl/compat_functional.hxx> using namespace ::com::sun::star; @@ -575,7 +576,7 @@ uno::Sequence< OUString > SAL_CALL ChartTypeManager::getAvailableServiceNames() // get own default templates ::std::transform( rMap.begin(), rMap.end(), ::std::back_inserter( aServices ), - ::std::select1st< tTemplateMapType::value_type >()); + ::o3tl::select1st< tTemplateMapType::value_type >()); // add components that were registered in the context's factory uno::Reference< container::XContentEnumerationAccess > xEnumAcc( |