summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/waitsymbol.cxx
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-08 17:39:23 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-08 17:41:39 +0100
commitc71de19e96d4023be747d6f15b1cb4c05fbf0734 (patch)
treecb1e45f861a317525a4895d366d9e58f8c0a5a34 /slideshow/source/engine/waitsymbol.cxx
parent28f55d0d5ef8616ac45ca36e6fc23a21b64b7a13 (diff)
Port stuff to our private implementation of SGI extensions
Diffstat (limited to 'slideshow/source/engine/waitsymbol.cxx')
-rw-r--r--slideshow/source/engine/waitsymbol.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/slideshow/source/engine/waitsymbol.cxx b/slideshow/source/engine/waitsymbol.cxx
index aa472e363cc2..3b834b1d1e60 100644
--- a/slideshow/source/engine/waitsymbol.cxx
+++ b/slideshow/source/engine/waitsymbol.cxx
@@ -43,6 +43,7 @@
#include "waitsymbol.hxx"
#include "eventmultiplexer.hxx"
+#include <o3tl/compat_functional.hxx>
#include <algorithm>
@@ -165,7 +166,7 @@ void WaitSymbol::viewRemoved( const UnoViewSharedPtr& rView )
std::equal_to<UnoViewSharedPtr>(),
rView,
// select view:
- boost::bind( std::select1st<ViewsVecT::value_type>(), _1 ) ) ),
+ boost::bind( o3tl::select1st<ViewsVecT::value_type>(), _1 ) ) ),
maViews.end() );
}
@@ -180,7 +181,7 @@ void WaitSymbol::viewChanged( const UnoViewSharedPtr& rView )
std::equal_to<UnoViewSharedPtr>(),
rView,
// select view:
- boost::bind( std::select1st<ViewsVecT::value_type>(), _1 ))));
+ boost::bind( o3tl::select1st<ViewsVecT::value_type>(), _1 ))));
OSL_ASSERT( aModifiedEntry != maViews.end() );
if( aModifiedEntry == maViews.end() )