sc/source/ui/view/gridwin2.cxx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-)
New commits: commit d04ca9abd2f160d4a8213dedde65406a8251d9bc 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:33 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/+/193367 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Tomaž Vajngerl <[email protected]> (cherry picked from commit 6c06abd7a7379167f5a9bfbcfee8e7524217dfeb) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193759 Tested-by: Tomaž Vajngerl <[email protected]> diff --git a/sc/source/ui/view/gridwin2.cxx b/sc/source/ui/view/gridwin2.cxx index c17b4b194e9a..aeb4f86fbc8a 100644 --- a/sc/source/ui/view/gridwin2.cxx +++ b/sc/source/ui/view/gridwin2.cxx @@ -732,13 +732,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);
