summaryrefslogtreecommitdiff
path: root/sw/source/core/layout/objectformatterlayfrm.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/layout/objectformatterlayfrm.hxx')
-rw-r--r--sw/source/core/layout/objectformatterlayfrm.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sw/source/core/layout/objectformatterlayfrm.hxx b/sw/source/core/layout/objectformatterlayfrm.hxx
index ae86b9cbb5f4..4f0b54cb5a83 100644
--- a/sw/source/core/layout/objectformatterlayfrm.hxx
+++ b/sw/source/core/layout/objectformatterlayfrm.hxx
@@ -21,18 +21,18 @@
#include <objectformatter.hxx>
-class SwLayoutFrm;
+class SwLayoutFrame;
// Format floating screen objects, which are anchored at a given anchor text frame
// and registered at the given page frame.
-class SwObjectFormatterLayFrm : public SwObjectFormatter
+class SwObjectFormatterLayFrame : public SwObjectFormatter
{
private:
// anchor layout frame
- SwLayoutFrm& mrAnchorLayFrm;
+ SwLayoutFrame& mrAnchorLayFrame;
- SwObjectFormatterLayFrm( SwLayoutFrm& _rAnchorLayFrm,
- const SwPageFrm& _rPageFrm,
+ SwObjectFormatterLayFrame( SwLayoutFrame& _rAnchorLayFrame,
+ const SwPageFrame& _rPageFrame,
SwLayAction* _pLayAction );
/** method to format all anchored objects, which are registered at
@@ -48,10 +48,10 @@ class SwObjectFormatterLayFrm : public SwObjectFormatter
protected:
- virtual SwFrm& GetAnchorFrm() override;
+ virtual SwFrame& GetAnchorFrame() override;
public:
- virtual ~SwObjectFormatterLayFrm();
+ virtual ~SwObjectFormatterLayFrame();
// #i40147# - add parameter <_bCheckForMovedFwd>.
// Not relevant for objects anchored at layout frame.
@@ -59,9 +59,9 @@ class SwObjectFormatterLayFrm : public SwObjectFormatter
const bool _bCheckForMovedFwd = false ) override;
virtual bool DoFormatObjs() override;
- static SwObjectFormatterLayFrm* CreateObjFormatter(
- SwLayoutFrm& _rAnchorLayFrm,
- const SwPageFrm& _rPageFrm,
+ static SwObjectFormatterLayFrame* CreateObjFormatter(
+ SwLayoutFrame& _rAnchorLayFrame,
+ const SwPageFrame& _rPageFrame,
SwLayAction* _pLayAction );
};