summaryrefslogtreecommitdiff
path: root/sw/source/uibase/uiview/viewdraw.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-04-06 14:45:46 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-04-06 21:28:03 +0200
commit84a4da19ae0f5e092a0deb7007a34d2ee78d5da7 (patch)
treecddce0f7c446ff6713bed64fa1d5b302f259398c /sw/source/uibase/uiview/viewdraw.cxx
parent8bdf557876a65ab6d7860874ee2c7fd4ca3cc52b (diff)
ExecuteSpellPopup never called with a null spelling callback
Change-Id: Id03001541ccfd8503a7b8181598bad9811542b4e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113694 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/uibase/uiview/viewdraw.cxx')
-rw-r--r--sw/source/uibase/uiview/viewdraw.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/uiview/viewdraw.cxx b/sw/source/uibase/uiview/viewdraw.cxx
index 80c42872c29b..0e860f80472b 100644
--- a/sw/source/uibase/uiview/viewdraw.cxx
+++ b/sw/source/uibase/uiview/viewdraw.cxx
@@ -721,7 +721,7 @@ bool SwView::ExecDrwTextSpellPopup(const Point& rPt)
{
bRet = true;
Link<SpellCallbackInfo&,void> aLink = LINK(this, SwView, OnlineSpellCallback);
- pOLV->ExecuteSpellPopup( aPos,&aLink );
+ pOLV->ExecuteSpellPopup(aPos, aLink);
}
return bRet;
}