summaryrefslogtreecommitdiff
path: root/sw/source/core/graphic/ndgrf.cxx
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@libreoffice.org>2020-11-10 22:40:47 +0100
committerBjoern Michaelsen <bjoern.michaelsen@libreoffice.org>2020-11-12 00:11:29 +0100
commitab72e9fe38b5d30bd1a0393e1611ae969919908f (patch)
treec8569abfaf1bd7a5c8d2247a314c716996650213 /sw/source/core/graphic/ndgrf.cxx
parent1abf4e6d07ca0ac31bc54f812df84efc82d2af1b (diff)
Make SwClientNotifyCall protected
Change-Id: I1da6cd45c5039f2b36ae6d8a64febc69eda9c6d5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105569 Tested-by: Jenkins Reviewed-by: Bjoern Michaelsen <bjoern.michaelsen@libreoffice.org>
Diffstat (limited to 'sw/source/core/graphic/ndgrf.cxx')
-rw-r--r--sw/source/core/graphic/ndgrf.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/graphic/ndgrf.cxx b/sw/source/core/graphic/ndgrf.cxx
index f4ab419cbff1..1f894a90de8c 100644
--- a/sw/source/core/graphic/ndgrf.cxx
+++ b/sw/source/core/graphic/ndgrf.cxx
@@ -58,7 +58,7 @@ namespace
void lcl_SwClientNotify(sw::BroadcastingModify& rModify, const SfxPoolItem& rOldNew)
{
const sw::LegacyModifyHint aHint(&rOldNew, &rOldNew);
- rModify.SwClientNotify(rModify, aHint);
+ rModify.SwClientNotifyCall(rModify, aHint);
}
}
SwGrfNode::SwGrfNode(
@@ -381,12 +381,12 @@ void SwGrfNode::TriggerGraphicArrived()
SwIterator<sw::BroadcastingModify,SwGrfNode> aIter(*this);
for(sw::BroadcastingModify* pLast = aIter.First(); pLast; pLast = aIter.Next())
if(dynamic_cast<const SwContentFrame*>(pLast) == nullptr)
- pLast->SwClientNotify(*this, sw::LegacyModifyHint(&aMsgHint, &aMsgHint));
+ pLast->SwClientNotifyCall(*this, sw::LegacyModifyHint(&aMsgHint, &aMsgHint));
}
{
SwIterator<SwContentFrame,SwGrfNode> aIter(*this);
for(SwContentFrame* pLast = aIter.First(); pLast; pLast = aIter.Next())
- pLast->SwClientNotify(*this, sw::LegacyModifyHint(&aMsgHint, &aMsgHint));
+ pLast->SwClientNotifyCall(*this, sw::LegacyModifyHint(&aMsgHint, &aMsgHint));
}
UnlockModify();
}