summaryrefslogtreecommitdiff
path: root/xmloff/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-01-17 17:09:14 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-01-25 07:24:31 +0100
commitcae452a167b78d8dc164059db8a9fbe1eb3d521d (patch)
tree8772a61352fd283b55ad02e30c88bfe4dae1fa2c /xmloff/inc
parent6a579702b1128372aa30c86156996e57ba73b2c8 (diff)
loplugin:useuniqueptr in XMLTextFieldExport
Change-Id: I2b3e1ec5454bc3486fb41b010091adc549500daf Reviewed-on: https://gerrit.libreoffice.org/48512 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/inc')
-rw-r--r--xmloff/inc/txtflde.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/xmloff/inc/txtflde.hxx b/xmloff/inc/txtflde.hxx
index 5f7fd452f988..34c867017762 100644
--- a/xmloff/inc/txtflde.hxx
+++ b/xmloff/inc/txtflde.hxx
@@ -32,6 +32,7 @@
#include <map>
#include <set>
+#include <memory>
class SvXMLExport;
@@ -151,9 +152,9 @@ class XMLTextFieldExport final
SvXMLExport& rExport;
/// store used text field master names (NULL means: don't collect)
- ::std::map<
+ std::unique_ptr< ::std::map<
css::uno::Reference< css::text::XText >,
- ::std::set< OUString > > *
+ ::std::set< OUString > > >
pUsedMasters;
public:
@@ -481,7 +482,7 @@ private:
const OUString sPropertyTooltip;
const OUString sPropertyTextRange;
- XMLPropertyState* pCombinedCharactersPropertyState;
+ std::unique_ptr<XMLPropertyState> pCombinedCharactersPropertyState;
};