diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-08 17:39:23 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-08 17:41:39 +0100 |
commit | c2cc6289baf2154cbb7c4fa88627060793ffb22c (patch) | |
tree | 585bc6551bb9b6db2d4a0acf0ee0bcc01458bae5 /sd/source | |
parent | 222e5b0572ffea06729d0799e77390baa22bff57 (diff) |
Port stuff to our private implementation of SGI extensions
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/tools/PropertySet.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/tools/PropertySet.cxx b/sd/source/ui/tools/PropertySet.cxx index 4621de8fe..801a50a8a 100644 --- a/sd/source/ui/tools/PropertySet.cxx +++ b/sd/source/ui/tools/PropertySet.cxx @@ -31,7 +31,7 @@ #include "tools/PropertySet.hxx" #include <boost/bind.hpp> #include <algorithm> -#include <functional> +#include <o3tl/compat_functional.hxx> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; @@ -153,7 +153,7 @@ void SAL_CALL PropertySet::removePropertyChangeListener ( std::compose1( std::bind1st(std::equal_to<Reference<beans::XPropertyChangeListener> >(), rxListener), - std::select2nd<ChangeListenerContainer::value_type>()))); + o3tl::select2nd<ChangeListenerContainer::value_type>()))); if (iListener != mpChangeListeners->end()) { mpChangeListeners->erase(iListener); |