From e3e6f43bc8c01ca6c3ad87180db2b3e623d8eed4 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 15 Mar 2019 11:19:51 +0000 Subject: clarify that set_visible(true/false) is just show/hide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ditch duplicate method Change-Id: Iea35d6437f48809a06e093241bddf301f00c502b Reviewed-on: https://gerrit.libreoffice.org/69302 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- starmath/source/dialog.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'starmath') diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx index dea622fdad57..b8fae68c547a 100644 --- a/starmath/source/dialog.cxx +++ b/starmath/source/dialog.cxx @@ -331,7 +331,7 @@ SmFontDialog::SmFontDialog(weld::Window * pParent, OutputDevice *pFntListDevice, m_xBoldCheckBox->set_sensitive(false); m_xItalicCheckBox->set_active(false); m_xItalicCheckBox->set_sensitive(false); - m_xAttrFrame->show(false); + m_xAttrFrame->hide(); } } @@ -705,9 +705,9 @@ void SmDistanceDialog::SetCategory(sal_uInt16 nCategory) // of an associated HelpID is checked bActive = aCatMf2Hid[nCategory][i] != nullptr; - pFT->show(bActive); + pFT->set_visible(bActive); pFT->set_sensitive(bActive); - pMF->show(bActive); + pMF->set_visible(bActive); pMF->set_sensitive(bActive); // set measurement unit and number of decimal places -- cgit