sc/source/ui/view/gridwin2.cxx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-)
New commits: commit b65ae3578d876ff31563ade394209d2e76bfb0a2 Author: Dennis Francis <[email protected]> AuthorDate: Mon Nov 3 22:59:17 2025 +0530 Commit: Tomaž Vajngerl <[email protected]> CommitDate: Tue Nov 11 14:11:14 2025 +0100 cool#9176: do not incorrectly set bIsMultiField pNotifier should not be used to set this field which will be non-null in lok mode. In this particular branch of code bIsMultiField should be false which is the default in ScCheckListMenuControl ctor. Signed-off-by: Dennis Francis <[email protected]> Change-Id: I482495fd50f48fc7830eda2361503a60bb713f03 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193392 Reviewed-by: Tomaž Vajngerl <[email protected]> Tested-by: Jenkins diff --git a/sc/source/ui/view/gridwin2.cxx b/sc/source/ui/view/gridwin2.cxx index 0a191875dd12..6b44ad4cf876 100644 --- a/sc/source/ui/view/gridwin2.cxx +++ b/sc/source/ui/view/gridwin2.cxx @@ -730,13 +730,9 @@ void ScGridWindow::DPLaunchFieldPopupMenu(const Point& rScrPos, const Size& rScr mpDPFieldPopup.reset(); - vcl::ILibreOfficeKitNotifier* pNotifier = nullptr; - if (comphelper::LibreOfficeKit::isActive()) - pNotifier = SfxViewShell::Current(); - weld::Window* pPopupParent = GetFrameWeld(); mpDPFieldPopup.reset(new ScCheckListMenuControl(pPopupParent, mrViewData, - false, -1, pNotifier)); + false, -1)); DPSetupFieldPopup(std::move(pDPData), bDimOrientNotPage, pDPObj);
