summaryrefslogtreecommitdiff
path: root/sw/source/core/draw
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@libreoffice.org>2020-11-05 00:55:00 +0100
committerBjoern Michaelsen <bjoern.michaelsen@libreoffice.org>2020-11-05 14:10:32 +0100
commitc44fa10aa2a04945196622c73272c775374be486 (patch)
tree0935924be251a34392b04818aef59673a5a0bf82 /sw/source/core/draw
parentc967a7f0130d804a73fa7073c4a1703fcd51bd75 (diff)
retire most of SwModify
only remaining uses are: - in calbck.{c,h}xx - in uwriter unittests - as a parameter of SwClientNotify all other uses have been replaced with sw::BroadcastingModify, which contains sw::BroadcastingMixin functionality. Existing code should then be moved to sw::BroadcastingMixin (only) as soon as possible. Change-Id: Ief7895597633c2fcb97e1cbc182905d75feb1567 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105320 Tested-by: Jenkins Reviewed-by: Bjoern Michaelsen <bjoern.michaelsen@libreoffice.org>
Diffstat (limited to 'sw/source/core/draw')
-rw-r--r--sw/source/core/draw/dcontact.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/draw/dcontact.cxx b/sw/source/core/draw/dcontact.cxx
index 8bdcac6344de..8707bcbaeb84 100644
--- a/sw/source/core/draw/dcontact.cxx
+++ b/sw/source/core/draw/dcontact.cxx
@@ -1787,7 +1787,7 @@ void SwDrawContact::ConnectToLayout( const SwFormatAnchor* pAnch )
// anchor at first found frame the 'master' object and
// at the following frames 'virtual' drawing objects.
// Note: method is similar to <SwFlyFrameFormat::MakeFrames(..)>
- SwModify *pModify = nullptr;
+ sw::BroadcastingModify *pModify = nullptr;
if( pAnch->GetContentAnchor() )
{
if ( pAnch->GetAnchorId() == RndStdIds::FLY_AT_FLY )
@@ -1827,7 +1827,7 @@ void SwDrawContact::ConnectToLayout( const SwFormatAnchor* pAnch )
break;
}
- SwIterator<SwFrame, SwModify, sw::IteratorMode::UnwrapMulti> aIter(*pModify);
+ SwIterator<SwFrame, sw::BroadcastingModify, sw::IteratorMode::UnwrapMulti> aIter(*pModify);
SwFrame* pAnchorFrameOfMaster = nullptr;
for( SwFrame *pFrame = aIter.First(); pFrame; pFrame = aIter.Next() )
{