summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/docfld.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/inc/docfld.hxx')
-rw-r--r--sw/source/core/inc/docfld.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sw/source/core/inc/docfld.hxx b/sw/source/core/inc/docfld.hxx
index 5410ed76f52a..9979d557a8ee 100644
--- a/sw/source/core/inc/docfld.hxx
+++ b/sw/source/core/inc/docfld.hxx
@@ -24,6 +24,7 @@
#include <doc.hxx>
#include <IDocumentTimerAccess.hxx>
#include <o3tl/sorted_vector.hxx>
+#include <memory>
class SwTextField;
class SwIndex;
@@ -131,8 +132,8 @@ const int GETFLD_EXPAND = 2;
class SwDocUpdateField
{
- SetGetExpFields* pFieldSortLst; // current field list for calculation
- SwCalcFieldType* aFieldTypeTable[ TBLSZ ];
+ std::unique_ptr<SetGetExpFields> pFieldSortLst; // current field list for calculation
+ std::unique_ptr<SwCalcFieldType> aFieldTypeTable[ TBLSZ ];
sal_uLong nNodes; // if the node count is different
sal_uInt8 nFieldLstGetMode;
@@ -149,7 +150,7 @@ public:
SwDocUpdateField(SwDoc* pDocument);
~SwDocUpdateField();
- const SetGetExpFields* GetSortLst() const { return pFieldSortLst; }
+ const SetGetExpFields* GetSortLst() const { return pFieldSortLst.get(); }
void MakeFieldList( SwDoc& rDoc, bool bAll, int eGetMode );