oox/source/ppt/timenode.cxx |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 336dd506c0978faf914279de56c125949920223e
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Thu Feb 19 11:38:35 2015 +0100

    "no matching function for call to 'get_pointer'," use lambda instead
    
    Change-Id: I40ea3b781ec35171706a277acff6eb2eab29c297

diff --git a/oox/source/ppt/timenode.cxx b/oox/source/ppt/timenode.cxx
index 043c2e9..282a3dc 100644
--- a/oox/source/ppt/timenode.cxx
+++ b/oox/source/ppt/timenode.cxx
@@ -534,9 +534,11 @@ namespace oox { namespace ppt {
                 maTransitionFilter.setTransitionFilterProperties( xFilter );
             }
 
-            std::for_each( maChildren.begin(), maChildren.end(),
-                           boost::bind(&TimeNode::addNode, _1, 
boost::cref(rFilter), boost::ref(xNode),
-                                       boost::ref(pSlide) ) );
+            std::for_each(
+                maChildren.begin(), maChildren.end(),
+                [&rFilter, &xNode, &pSlide] (TimeNodePtr const & child) {
+                    child->addNode(rFilter, xNode, pSlide);
+                } );
 
             switch( mnNodeType )
             {
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to