[Libreoffice-commits] core.git: sw/source

Miklos Vajna vmiklos at collabora.co.uk
Wed Jan 8 09:37:27 PST 2014


 sw/source/core/doc/docbm.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a39cc5745d28e9c1fc65873d1792cb545b316924
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Wed Jan 8 18:36:11 2014 +0100

    sw: one more bind -> boost::bind
    
    Change-Id: I6f3d36f0b0775559f3f0617d273a4f4595feda76

diff --git a/sw/source/core/doc/docbm.cxx b/sw/source/core/doc/docbm.cxx
index e1d6157..194680f 100644
--- a/sw/source/core/doc/docbm.cxx
+++ b/sw/source/core/doc/docbm.cxx
@@ -843,7 +843,7 @@ namespace sw { namespace mark
             find_if(
                 pMarkLow,
                 pMarkHigh,
-                boost::bind(equal_to<const IMark*>(), bind(&boost::shared_ptr<IMark>::get, _1), pMark) );
+                boost::bind(equal_to<const IMark*>(), boost::bind(&boost::shared_ptr<IMark>::get, _1), pMark) );
         if(pMarkFound != pMarkHigh)
             deleteMark(pMarkFound);
     }


More information about the Libreoffice-commits mailing list