summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/slide/shapemanagerimpl.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-05-11 12:41:19 +0200
committerMichael Stahl <mstahl@redhat.com>2016-05-13 08:34:47 +0000
commita345c5912d9e292ddd885546a60353d1769fbc86 (patch)
treeca06419465e2db749195c818c9d36be8d0ba7a48 /slideshow/source/engine/slide/shapemanagerimpl.cxx
parente4df5736f753078944f96548b4922c75f70a6afd (diff)
slideshow: replace boost::mem_fn with std::mem_fn
Change-Id: I0b02b2b13cacac48d94e541671a446368f5e527f Reviewed-on: https://gerrit.libreoffice.org/24885 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'slideshow/source/engine/slide/shapemanagerimpl.cxx')
-rw-r--r--slideshow/source/engine/slide/shapemanagerimpl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/slide/shapemanagerimpl.cxx b/slideshow/source/engine/slide/shapemanagerimpl.cxx
index ceb0db898511..4a0a3375630b 100644
--- a/slideshow/source/engine/slide/shapemanagerimpl.cxx
+++ b/slideshow/source/engine/slide/shapemanagerimpl.cxx
@@ -26,7 +26,7 @@
#include "shapemanagerimpl.hxx"
-#include <boost/mem_fn.hpp>
+#include <functional>
using namespace com::sun::star;
@@ -393,13 +393,13 @@ void ShapeManagerImpl::removeIntrinsicAnimationHandler( const IntrinsicAnimation
void ShapeManagerImpl::notifyIntrinsicAnimationsEnabled()
{
maIntrinsicAnimationEventHandlers.applyAll(
- boost::mem_fn(&IntrinsicAnimationEventHandler::enableAnimations));
+ std::mem_fn(&IntrinsicAnimationEventHandler::enableAnimations));
}
void ShapeManagerImpl::notifyIntrinsicAnimationsDisabled()
{
maIntrinsicAnimationEventHandlers.applyAll(
- boost::mem_fn(&IntrinsicAnimationEventHandler::disableAnimations));
+ std::mem_fn(&IntrinsicAnimationEventHandler::disableAnimations));
}