diff options
Diffstat (limited to 'sw/inc/frmfmt.hxx')
-rw-r--r-- | sw/inc/frmfmt.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sw/inc/frmfmt.hxx b/sw/inc/frmfmt.hxx index 35f84107d57e..88c77f5b09a9 100644 --- a/sw/inc/frmfmt.hxx +++ b/sw/inc/frmfmt.hxx @@ -43,6 +43,7 @@ class SW_DLLPUBLIC SwFrameFormat: public SwFormat friend class SwPageDesc; ///< Is allowed to call protected CTor. friend class ::sw::DocumentLayoutManager; ///< Is allowed to call protected CTor. friend class SwFrameFormats; ///< Is allowed to update the list backref. + friend class SwTextBoxHelper; css::uno::WeakReference<css::uno::XInterface> m_wXObject; @@ -52,6 +53,8 @@ class SW_DLLPUBLIC SwFrameFormat: public SwFormat // The assigned SwFrmFmt list. SwFrameFormats *m_ffList; + SwFrameFormat *m_pOtherTextBoxFormat; + struct change_name { change_name(const OUString &rName) : mName(rName) {} @@ -76,6 +79,9 @@ protected: virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem* pNewValue ) override; + SwFrameFormat* GetOtherTextBoxFormat() const { return m_pOtherTextBoxFormat; } + void SetOtherTextBoxFormat( SwFrameFormat *pFormat ); + public: virtual ~SwFrameFormat(); |