summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/rowfrm.hxx
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@libreoffice.org>2020-11-18 21:23:58 +0100
committerBjoern Michaelsen <bjoern.michaelsen@libreoffice.org>2020-11-21 08:29:34 +0100
commitb28e514d5e0ea45490b3cab30e1d97dd3da2c794 (patch)
tree313facca5d92b2890f49925179b11b90f8251814 /sw/source/core/inc/rowfrm.hxx
parent192f1febc9859a42307d77dcf3fcec998ef5663c (diff)
callnk: Replace needless SwClientNotifyCall with CallSwClientNotify
Change-Id: Ie34f2b227e5986c1fc72c3d0ba84dae98b51b4c6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106081 Tested-by: Jenkins Reviewed-by: Bjoern Michaelsen <bjoern.michaelsen@libreoffice.org>
Diffstat (limited to 'sw/source/core/inc/rowfrm.hxx')
-rw-r--r--sw/source/core/inc/rowfrm.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/core/inc/rowfrm.hxx b/sw/source/core/inc/rowfrm.hxx
index 505c0e635535..cde10cf8b305 100644
--- a/sw/source/core/inc/rowfrm.hxx
+++ b/sw/source/core/inc/rowfrm.hxx
@@ -52,7 +52,7 @@ class SwRowFrame : public SwLayoutFrame
protected:
virtual void MakeAll(vcl::RenderContext* pRenderContext) override;
- virtual void Modify(const SfxPoolItem*, const SfxPoolItem*) override;
+ virtual void SwClientNotify(const SwModify&, const SfxHint&) override;
public:
SwRowFrame(const SwTableLine&, SwFrame*, bool bInsertContent = true);
@@ -121,6 +121,7 @@ public:
// height to fit the rest of space.
bool IsInSplit() const { return m_bIsInSplit; }
void SetInSplit(bool bNew = true) { m_bIsInSplit = bNew; }
+ void OnFrameSize(const SwFormatFrameSize&);
};
#endif