summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorSzymon Kłos <szymon.klos@collabora.com>2022-03-08 12:41:42 +0100
committerSzymon Kłos <szymon.klos@collabora.com>2022-03-09 08:49:51 +0100
commitede013556275e2095914d88d42f5af04d9919b53 (patch)
treed66b7e22bb94474ddfa1b76b2b39c09d05e0f287 /sc
parent0ad2815e6f2b458cb2a01f23b513973539990c9a (diff)
lok: autofilter: use correct timer
copy/paste mistake introduced in: https://cgit.freedesktop.org/libreoffice/core/commit/?h=distro/collabora/co-2021&id=9419c2928a97d5c14be244dfdec51401b0487809 Change-Id: I08d5290b034d8df415c85917600a6182b3bbfc9f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131179 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Mert Tumer <mert.tumer@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/cctrl/checklistmenu.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/cctrl/checklistmenu.cxx b/sc/source/ui/cctrl/checklistmenu.cxx
index e89fdbdb4df5..c72c2217856f 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ b/sc/source/ui/cctrl/checklistmenu.cxx
@@ -282,7 +282,7 @@ void ScCheckListMenuControl::queueCloseSubMenu()
maCloseTimer.mpSubMenu = maOpenTimer.mpSubMenu;
maCloseTimer.mnMenuPos = maOpenTimer.mnMenuPos;
if (comphelper::LibreOfficeKit::isActive())
- maOpenTimer.maTimer.Invoke();
+ maCloseTimer.maTimer.Invoke();
else
maCloseTimer.maTimer.Start();
}