summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/rtfexport.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-01-17 12:55:56 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-01-17 13:52:48 +0100
commit15db0307fe6429238be72612cccd4a1df5e1e97c (patch)
treeac509f6303dd23ba620c96e8527ed4df72b3f7df /sw/source/filter/ww8/rtfexport.hxx
parent22f0862ae782c90306d444d2f5aa253b9e97acd2 (diff)
Use std::unique_ptr
Change-Id: I4c72576d36621d863de55b0ab9f0b5a22753446a
Diffstat (limited to 'sw/source/filter/ww8/rtfexport.hxx')
-rw-r--r--sw/source/filter/ww8/rtfexport.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/rtfexport.hxx b/sw/source/filter/ww8/rtfexport.hxx
index 80451477c4a8..44c5c37260ec 100644
--- a/sw/source/filter/ww8/rtfexport.hxx
+++ b/sw/source/filter/ww8/rtfexport.hxx
@@ -20,6 +20,7 @@
#ifndef INCLUDED_SW_SOURCE_FILTER_WW8_RTFEXPORT_HXX
#define INCLUDED_SW_SOURCE_FILTER_WW8_RTFEXPORT_HXX
+#include <memory>
#include "wrtww8.hxx"
class RtfAttributeOutput;
@@ -41,12 +42,12 @@ class RtfExport : public MSWordExportBase
Writer* m_pWriter;
/// Attribute output for document.
- boost::shared_ptr<RtfAttributeOutput> m_pAttrOutput;
+ std::unique_ptr<RtfAttributeOutput> m_pAttrOutput;
/// Sections/headers/footers
MSWordSections* m_pSections;
- boost::shared_ptr<RtfSdrExport> m_pSdrExport;
+ std::unique_ptr<RtfSdrExport> m_pSdrExport;
bool m_bOutOutlineOnly;
public: