diff options
author | Bjoern Michaelsen <bjoern.michaelsen@libreoffice.org> | 2021-10-30 01:38:21 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-11-03 11:00:16 +0100 |
commit | 68cea95423818f6ae19b735e2029284c5fc9397b (patch) | |
tree | d368dde26060f2fef7d1a5c2677d447b0a3863dd | |
parent | 0a059912bae4e3bc0b2640efb4e163d79f54a5d7 (diff) |
tdf#145326: fix breaking DDE links
Change-Id: Ib80a83ed1e4c87ee6af2f8ef55309ad9779aac66
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124455
Tested-by: Jenkins
Tested-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r-- | sw/source/core/edit/edfld.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/edit/edfld.cxx b/sw/source/core/edit/edfld.cxx index bef3f2b286fb..33089ef827bc 100644 --- a/sw/source/core/edit/edfld.cxx +++ b/sw/source/core/edit/edfld.cxx @@ -132,7 +132,7 @@ void SwEditShell::FieldToText( SwFieldType const * pType ) Push(); SwPaM* pPaM = GetCursor(); const SwFieldHint aHint(pPaM, GetLayout()); - CallSwClientNotify(aHint); + pType->CallSwClientNotify(aHint); Pop(PopMode::DeleteCurrent); EndAllAction(); |