svx/source/tbxctrls/bulletsnumbering.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit cea7806d94dc3db8ac2f8d91afad27002201bece Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Mon Jun 30 13:49:33 2025 +0100 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Mon Jun 30 18:13:11 2025 +0200 hide/show the associated scrolled window as well as the content Change-Id: I783076e749a3386436cebf63af36e576dd28c185 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187195 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/svx/source/tbxctrls/bulletsnumbering.cxx b/svx/source/tbxctrls/bulletsnumbering.cxx index 3f4d39e32889..90a7b0c5e7a7 100644 --- a/svx/source/tbxctrls/bulletsnumbering.cxx +++ b/svx/source/tbxctrls/bulletsnumbering.cxx @@ -85,7 +85,7 @@ NumberingPopup::NumberingPopup(NumberingToolBoxControl& rController, mxValueSetDoc->SetStyle(WB_MENUSTYLEVALUESET | WB_FLATVALUESET | WB_NO_DIRECTSELECT); mxValueSet->init(mePageType); mxValueSetDoc->init(NumberingPageType::DOCBULLET); - mxValueSetWinDoc->hide(); + mxValueSetDoc->Hide(); mxDocBulletsLabel->hide(); if ( mePageType != NumberingPageType::BULLET ) @@ -184,13 +184,13 @@ void NumberingPopup::statusChanged( const css::frame::FeatureStateEvent& rEvent } if (!aList.empty()) { - mxValueSetWinDoc->show(); + mxValueSetDoc->Show(); mxDocBulletsLabel->show(); mxValueSetDoc->SetCustomBullets(aList); } else { - mxValueSetWinDoc->hide(); + mxValueSetDoc->Hide(); mxDocBulletsLabel->hide(); } }