diff options
author | n.r.pearson <n.r.pearson@gmail.com> | 2015-09-09 11:24:33 -0400 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-10 07:48:32 +0000 |
commit | fa4871b7436c159c9d206d910f899d8af3044d72 (patch) | |
tree | f14ffd20718fb6065dbf9772c113babb51e88a77 /svx/source | |
parent | 5a52fefc192dde9fc47badca526089f8d63c5ee6 (diff) |
tdf#93243 replace boost::bind with C++11 lambdas in unoshape.cxx
Change-Id: I0f87956800e741a837f3492aa76968df35b692ec
Reviewed-on: https://gerrit.libreoffice.org/18449
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/unodraw/unoshape.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/unodraw/unoshape.cxx b/svx/source/unodraw/unoshape.cxx index 35423a2f8b80..667d687432f8 100644 --- a/svx/source/unodraw/unoshape.cxx +++ b/svx/source/unodraw/unoshape.cxx @@ -92,7 +92,6 @@ #include "svx/lathe3d.hxx" #include "svx/extrud3d.hxx" -#include <boost/bind.hpp> #include <boost/scoped_ptr.hpp> #include <vcl/wmf.hxx> @@ -1831,7 +1830,7 @@ void SAL_CALL SvxShape::setPropertyValues( const ::com::sun::star::uno::Sequence // make sure mbIsMultiPropertyCall and mpImpl->mpItemSet are // reseted even when an exception is thrown - const ::comphelper::ScopeGuard aGuard( boost::bind( &SvxShape::endSetPropertyValues, this ) ); + const ::comphelper::ScopeGuard aGuard( [this] () { return this->endSetPropertyValues(); } ); mbIsMultiPropertyCall = true; |