diff options
author | Michael Stahl <Michael.Stahl@cib.de> | 2018-11-09 16:40:12 +0100 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2018-11-15 15:10:07 +0100 |
commit | ac41b860be6f865732b6abafd59259b8c937f8cc (patch) | |
tree | 33b8abd3e81b7d874d3378fa517ada466ff023b8 /sw/inc | |
parent | cb55e37c32cef758f7bbe358a3766198e76991ac (diff) |
sw: remove the SwSetExpFieldType::m_pOutlChgNd member
It's only used in one function, just use a local map.
Change-Id: I3a79876acf8b31c1a8a14e9f65ada2153e7c773a
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/expfld.hxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sw/inc/expfld.hxx b/sw/inc/expfld.hxx index acf7818a05b3..94240200e998 100644 --- a/sw/inc/expfld.hxx +++ b/sw/inc/expfld.hxx @@ -139,7 +139,6 @@ class SwSetExpField; class SW_DLLPUBLIC SwSetExpFieldType : public SwValueFieldType { OUString const m_sName; - const SwNode* m_pOutlChgNd; OUString m_sDelim; sal_uInt16 m_nType; sal_uInt8 m_nLevel; @@ -177,11 +176,6 @@ public: void SetOutlineLvl( sal_uInt8 n ) { m_nLevel = n; } void SetChapter( SwSetExpField& rField, const SwNode& rNd ); - /** Member only for SwDoc::UpdateExpField. - It is needed only at runtime of sequence field types! */ - const SwNode* GetOutlineChgNd() const { return m_pOutlChgNd; } - void SetOutlineChgNd( const SwNode* p ) { m_pOutlChgNd = p; } - virtual void QueryValue( css::uno::Any& rVal, sal_uInt16 nWhich ) const override; virtual void PutValue( const css::uno::Any& rVal, sal_uInt16 nWhich ) override; }; |