summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2016-09-08 14:34:42 +0200
committerDavid Tardon <dtardon@redhat.com>2016-09-09 07:30:30 +0200
commita66933a890a70f5ff2ac43ccc03c26540ef2ccb3 (patch)
treeeeb47ddbfd93c2dbf616b425984003ebed53386c /include
parent91c8bec906cd3c39b9da5629391b151d1bad9a03 (diff)
use std::unique_ptr
Change-Id: I5128b3e950657f3fe6fc71a8de56c9dd87ac2324
Diffstat (limited to 'include')
-rw-r--r--include/xmloff/xmlnumi.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/xmloff/xmlnumi.hxx b/include/xmloff/xmlnumi.hxx
index 1b5983e2eb71..f6bf8d61d59b 100644
--- a/include/xmloff/xmlnumi.hxx
+++ b/include/xmloff/xmlnumi.hxx
@@ -22,6 +22,7 @@
#include <sal/config.h>
+#include <memory>
#include <vector>
#include <com/sun/star/container/XIndexReplace.hpp>
@@ -43,7 +44,7 @@ class XMLOFF_DLLPUBLIC SvxXMLListStyleContext
css::uno::Reference< css::container::XIndexReplace > xNumRules;
- SvxXMLListStyle_Impl *pLevelStyles;
+ std::unique_ptr<SvxXMLListStyle_Impl> pLevelStyles;
sal_Int32 nLevels;
bool bConsecutive : 1;