summaryrefslogtreecommitdiff
path: root/sw/source/core/attr/calbck.cxx
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2018-06-08 15:30:30 +0200
committerMichael Stahl <Michael.Stahl@cib.de>2018-06-08 21:51:33 +0200
commit52ad4cbcacb9c5155d47695d6f752c4b43118688 (patch)
tree5ae4f537ce5cee86de96d6773a34337e6ddd96c9 /sw/source/core/attr/calbck.cxx
parent0356b46e3a37017134fdcf4b7300d1496de44573 (diff)
sw_redlinehide: ListenerEntry::SwClientNotify should not call ...
... ModifyNotification() but SwClientNotify(), and let its default implementation call Modify(), because this allows for incremental migration of subclasses to SwClientNotify() while superclass still uses Modify(). Change-Id: Ieb7590507a80183e68341b3dee9ca5801d01bec0
Diffstat (limited to 'sw/source/core/attr/calbck.cxx')
-rw-r--r--sw/source/core/attr/calbck.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/attr/calbck.cxx b/sw/source/core/attr/calbck.cxx
index c8c26164c1fd..59451cd06083 100644
--- a/sw/source/core/attr/calbck.cxx
+++ b/sw/source/core/attr/calbck.cxx
@@ -45,7 +45,7 @@ namespace sw
m_pToTell->SwClientNotify(rModify, *pModifyChanged);
}
else if (m_pToTell)
- m_pToTell->ModifyNotification(pLegacyHint->m_pOld, pLegacyHint->m_pNew);
+ m_pToTell->SwClientNotifyCall(rModify, rHint);
}
else if (m_pToTell)
m_pToTell->SwClientNotifyCall(rModify, rHint);