summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/docxsdrexport.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-02-28 15:20:57 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-02-28 21:50:44 +0100
commite5d775d1bf603fed463e0e080e40f31dde07a3fa (patch)
treeffe9e0514508bf3071a0f7314240c745d67018b5 /sw/source/filter/ww8/docxsdrexport.hxx
parent69a80316f7da33e90e1006624466f52af524f1dc (diff)
boost::shared_ptr -> std::shared_ptr
Change-Id: I536b2c2fbbee9e9fd5dd10e016d73a771bd8083f
Diffstat (limited to 'sw/source/filter/ww8/docxsdrexport.hxx')
-rw-r--r--sw/source/filter/ww8/docxsdrexport.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/docxsdrexport.hxx b/sw/source/filter/ww8/docxsdrexport.hxx
index b910ee471b1a..09101289003e 100644
--- a/sw/source/filter/ww8/docxsdrexport.hxx
+++ b/sw/source/filter/ww8/docxsdrexport.hxx
@@ -10,7 +10,7 @@
#ifndef INCLUDED_SW_SOURCE_FILTER_WW8_DOCXSDREXPORT_HXX
#define INCLUDED_SW_SOURCE_FILTER_WW8_DOCXSDREXPORT_HXX
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include <com/sun/star/xml/dom/XDocument.hpp>
#include <rtl/strbuf.hxx>
@@ -52,7 +52,7 @@ public:
class DocxSdrExport
{
struct Impl;
- boost::shared_ptr<Impl> m_pImpl;
+ std::shared_ptr<Impl> m_pImpl;
public:
DocxSdrExport(DocxExport& rExport, sax_fastparser::FSHelperPtr pSerializer, oox::drawingml::DrawingML* pDrawingML);
~DocxSdrExport();