summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8glsy.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8/ww8glsy.hxx')
-rw-r--r--sw/source/filter/ww8/ww8glsy.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sw/source/filter/ww8/ww8glsy.hxx b/sw/source/filter/ww8/ww8glsy.hxx
index abd9518015ef..117e66d3cb8a 100644
--- a/sw/source/filter/ww8/ww8glsy.hxx
+++ b/sw/source/filter/ww8/ww8glsy.hxx
@@ -59,12 +59,11 @@ class WW8Glossary
public:
WW8Glossary( tools::SvRef<SotStorageStream> &refStrm, sal_uInt8 nVersion, SotStorage *pStg);
bool Load( SwTextBlocks &rBlocks, bool bSaveRelFile );
- ~WW8Glossary() { delete pGlossary; }
- WW8GlossaryFib *GetFib() { return pGlossary; }
+ WW8GlossaryFib *GetFib() { return pGlossary.get(); }
sal_uInt16 GetNoStrings() const { return nStrings; }
private:
- WW8GlossaryFib *pGlossary;
+ std::unique_ptr<WW8GlossaryFib> pGlossary;
tools::SvRef<SotStorageStream> xTableStream;
tools::SvRef<SotStorageStream> &rStrm;
tools::SvRef<SotStorage> xStg;