summaryrefslogtreecommitdiffstats
path: root/sw/source/core/txtnode/ndtxt.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/txtnode/ndtxt.cxx')
-rw-r--r--sw/source/core/txtnode/ndtxt.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/txtnode/ndtxt.cxx b/sw/source/core/txtnode/ndtxt.cxx
index 47bff5e08b..77dbe2e029 100644
--- a/sw/source/core/txtnode/ndtxt.cxx
+++ b/sw/source/core/txtnode/ndtxt.cxx
@@ -412,12 +412,12 @@ void MoveMergedFlysAndFootnotes(std::vector<SwTextFrame*> const& rFrames,
}
for (SwAnchoredObject *const pObj : objs)
{
- SwFrameFormat & rFormat(pObj->GetFrameFormat());
- SwFormatAnchor const& rAnchor(rFormat.GetAnchor());
+ SwFrameFormat* pFormat(pObj->GetFrameFormat());
+ SwFormatAnchor const& rAnchor(pFormat->GetAnchor());
if (rFirstNode.GetIndex() < rAnchor.GetAnchorNode()->GetIndex())
{
// move it to the new frame of "this"
- rFormat.CallSwClientNotify(sw::LegacyModifyHint(&rAnchor, &rAnchor));
+ pFormat->CallSwClientNotify(sw::LegacyModifyHint(&rAnchor, &rAnchor));
// note pObjs will be deleted if it becomes empty
assert(!pFrame->GetDrawObjs() || !pObjs->Contains(*pObj));
}