summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/odf/odfemitter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/pdfimport/odf/odfemitter.cxx')
-rw-r--r--sdext/source/pdfimport/odf/odfemitter.cxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/sdext/source/pdfimport/odf/odfemitter.cxx b/sdext/source/pdfimport/odf/odfemitter.cxx
index bf1a148f10ea..f28667b914b8 100644
--- a/sdext/source/pdfimport/odf/odfemitter.cxx
+++ b/sdext/source/pdfimport/odf/odfemitter.cxx
@@ -25,7 +25,8 @@
#include <cppuhelper/exc_hlp.hxx>
#include <com/sun/star/io/XInputStream.hpp>
#include <com/sun/star/io/XOutputStream.hpp>
-#include <boost/bind.hpp>
+
+#include <comphelper/stl_types.hxx>
using namespace com::sun::star;
@@ -87,12 +88,8 @@ void OdfEmitter::beginTag( const char* pTag, const PropertyMap& rProperties )
// platforms, and even between different compile-time settings),
// sort the attributes.
std::sort(aAttributes.begin(), aAttributes.end());
- std::for_each(aAttributes.begin(),
- aAttributes.end(),
- boost::bind( (OUStringBuffer& (OUStringBuffer::*)(const OUString&))
- (&OUStringBuffer::append),
- boost::ref(aElement),
- _1 ));
+ std::copy(aAttributes.begin(), aAttributes.end(),
+ comphelper::OUStringBufferAppender(aElement));
aElement.append(">");
write(aElement.makeStringAndClear());