summaryrefslogtreecommitdiff
path: root/sc
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 /sc
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 'sc')
-rw-r--r--sc/source/ui/view/gridwin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index e9f0fde3f4df..75ae937c22a5 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -2962,7 +2962,7 @@ void ScGridWindow::Command( const CommandEvent& rCEvt )
pHdl->SetModified();
Link<SpellCallbackInfo&,void> aLink = LINK( this, ScGridWindow, PopupSpellingHdl );
- pEditView->ExecuteSpellPopup( aMenuPos, &aLink );
+ pEditView->ExecuteSpellPopup(aMenuPos, aLink);
bDone = true;
}