From 9311abf473dd8a3067a556ba1701be8a290f5c37 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Mon, 24 Aug 2020 22:18:55 +0200 Subject: tdf#136062 Don't use 'Reject (All)/Clear formatting' buttons in Calc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since formatting changes are not tracked in Calc Change-Id: Ib1b50d248f1ba75aad22cd04af86d15cc2813e36 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101293 Tested-by: Jenkins Reviewed-by: László Németh (cherry picked from commit 894fddc5edf5aad6fc6d0e18a6c934bfa7f001e4) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101453 Reviewed-by: Caolán McNamara (cherry picked from commit 120e696653a25a2560f8c60b08a6a86fda5c10fc) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101965 --- sc/source/ui/miscdlgs/acredlin.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sc/source/ui/miscdlgs/acredlin.cxx b/sc/source/ui/miscdlgs/acredlin.cxx index 4e08bc7506cf..f68080a336bd 100644 --- a/sc/source/ui/miscdlgs/acredlin.cxx +++ b/sc/source/ui/miscdlgs/acredlin.cxx @@ -109,10 +109,9 @@ ScAcceptChgDlg::ScAcceptChgDlg(SfxBindings* pB, SfxChildWindow* pCW, weld::Windo pTPFilter = m_xAcceptChgCtr->GetFilterPage(); pTPView = m_xAcceptChgCtr->GetViewPage(); - // set wider window for the optional extending button labels - // eg. "Reject/Clear formatting" instead of "Reject" - pTPView->EnableClearFormat(true); - pTPView->EnableClearFormatAll(true); + // tdf#136062 Don't use "Reject/Clear formatting" instead of "Reject" buttons in Calc + pTPView->EnableClearFormat(false); + pTPView->EnableClearFormatAll(false); pTheView = pTPView->GetTableControl(); pTheView->SetCalcView(); -- cgit