diff options
author | David Tardon <dtardon@redhat.com> | 2016-09-06 13:06:38 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-09-06 14:38:06 +0200 |
commit | 7e4d1521058916cf0facdba91f5b0ae1e95d318a (patch) | |
tree | 787cfb6eafc82a3729011eea1fc3d408183db24f /include/xmloff | |
parent | 9f965900a8a22cdf9dcd10f962e27b9ffc3ed8b8 (diff) |
drop unneeded dynamic allocation
Change-Id: I9e19c33998137ee0065f92ccb980d1ff5a82115b
Diffstat (limited to 'include/xmloff')
-rw-r--r-- | include/xmloff/xmlimp.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xmloff/xmlimp.hxx b/include/xmloff/xmlimp.hxx index 415ca40018fe..4ece8c13e23f 100644 --- a/include/xmloff/xmlimp.hxx +++ b/include/xmloff/xmlimp.hxx @@ -177,8 +177,8 @@ class XMLOFF_DLLPUBLIC SvXMLImport : public ::cppu::WeakImplHelper8< SvXMLNamespaceMap *mpNamespaceMap; SvXMLUnitConverter *mpUnitConv; - SvXMLImportContexts_Impl *mpContexts; - FastSvXMLImportContexts_Impl *mpFastContexts; + SvXMLImportContexts_Impl maContexts; + FastSvXMLImportContexts_Impl maFastContexts; SvXMLNumFmtHelper *mpNumImport; ProgressBarHelper *mpProgressBarHelper; XMLEventImportHelper *mpEventImportHelper; |