diff options
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/doc.hxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index a4bfb58d0b79..7c79c097b03e 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -475,6 +475,10 @@ private: bool mbXMLExport : 1; ///< sal_True: during XML export #endif + // true: Document contains at least one anchored object, which is anchored AT_PAGE with a content position. + // Thus, certain adjustment needed during formatting for these kind of anchored objects. + bool mbContainsAtPageObjWithContentAnchor : 1; + // // COMPATIBILITY FLAGS START // @@ -1030,6 +1034,15 @@ public: void SetXMLExport( bool bFlag ) { mbXMLExport = bFlag; } #endif + void SetContainsAtPageObjWithContentAnchor( const bool bFlag ) + { + mbContainsAtPageObjWithContentAnchor = bFlag; + } + bool DoesContainAtPageObjWithContentAnchor() + { + return mbContainsAtPageObjWithContentAnchor; + } + /** Returns positions of all FlyFrames in the document. If a Pam-Pointer is passed the FlyFrames attached to paragraphes have to be surrounded completely by ::com::sun::star::awt::Selection. |