summaryrefslogtreecommitdiff
path: root/sw/source/core/attr
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2018-06-08 15:30:30 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2018-06-14 16:19:02 +0200
commitd483038b2c987883b6ff9a1e6fdb41b8124eff95 (patch)
treefda2318ad432e89e67208ba37f533e1ac67c2f92 /sw/source/core/attr
parent03fc3399231cad0638844125eba18eb7eacd492f (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')
-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);