include/vcl/customweld.hxx | 1 - starmath/source/accessibility.cxx | 2 -- 2 files changed, 3 deletions(-)
New commits: commit b422799886c8add5998813215f4980b194fd231a Author: Michael Weghorn <[email protected]> AuthorDate: Wed Nov 26 23:36:33 2025 +0100 Commit: Michael Weghorn <[email protected]> CommitDate: Thu Nov 27 10:35:57 2025 +0100 vcl: Drop now unused CustomWidgetController::IsActive Unused now after Change-Id: I9958cc2aedab290741864da0155fefd30496895f Author: Michael Weghorn <[email protected]> Date: Wed Nov 26 23:34:19 2025 +0100 starmath a11y: Don't report ACTIVE state for SmGraphicAccessible Change-Id: I243621153fc8211e8a69aa9f048fc4ff620ab01a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194669 Code-Style: Michael Weghorn <[email protected]> Reviewed-by: Michael Weghorn <[email protected]> Tested-by: Jenkins diff --git a/include/vcl/customweld.hxx b/include/vcl/customweld.hxx index 2987d72511ba..07379aedbe79 100644 --- a/include/vcl/customweld.hxx +++ b/include/vcl/customweld.hxx @@ -70,7 +70,6 @@ public: bool IsEnabled() const { return m_pDrawingArea->get_sensitive(); } void Enable() const { m_pDrawingArea->set_sensitive(true); } void Disable() const { m_pDrawingArea->set_sensitive(false); } - bool IsActive() const { return m_pDrawingArea->is_active(); } int GetTextHeight() const { return m_pDrawingArea->get_text_height(); } int GetTextWidth(const OUString& rText) const { commit 35914980ad8e7896f19ad2d65fd9c61825f2c1b1 Author: Michael Weghorn <[email protected]> AuthorDate: Wed Nov 26 23:34:19 2025 +0100 Commit: Michael Weghorn <[email protected]> CommitDate: Thu Nov 27 10:35:47 2025 +0100 starmath a11y: Don't report ACTIVE state for SmGraphicAccessible Similar to previous commit Change-Id: Ifef9f921dd59e10a9a76474699d32b8a14212ba7 Author: Michael Weghorn <[email protected]> Date: Wed Nov 26 23:25:01 2025 +0100 svx a11y: Don't report ACTIVE state in WeldEditAccessible this state doesn't make sense here, s. the above commit's commit message for more background. Change-Id: I9958cc2aedab290741864da0155fefd30496895f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194668 Code-Style: Michael Weghorn <[email protected]> Reviewed-by: Michael Weghorn <[email protected]> Tested-by: Jenkins diff --git a/starmath/source/accessibility.cxx b/starmath/source/accessibility.cxx index aefd55e3bc21..56bd52666b36 100644 --- a/starmath/source/accessibility.cxx +++ b/starmath/source/accessibility.cxx @@ -201,8 +201,6 @@ sal_Int64 SAL_CALL SmGraphicAccessible::getAccessibleStateSet() nStateSet |= AccessibleStateType::FOCUSABLE; if (pWin->HasFocus()) nStateSet |= AccessibleStateType::FOCUSED; - if (pWin->IsActive()) - nStateSet |= AccessibleStateType::ACTIVE; if (pWin->IsVisible()) nStateSet |= AccessibleStateType::SHOWING; if (pWin->IsReallyVisible())
