summaryrefslogtreecommitdiff
path: root/sw/source/ui/config
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-02-05 19:49:13 +0000
committerCaolán McNamara <caolanm@redhat.com>2020-02-06 13:02:01 +0100
commite35ad8cb96f8299339a7efec4c5ccf389fece919 (patch)
treebd723fcab331b27caf87e004d87ccea21d3bc7da /sw/source/ui/config
parent0788ab19869aa2ae5f7fbef9e3c13ceb641f80ee (diff)
rename SvtFontSizeBox back to FontSizeBox
Change-Id: I2ec0c6dd376f3a192a62dc97f7454af946e2a5ce Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88065 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/ui/config')
-rw-r--r--sw/source/ui/config/optpage.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/config/optpage.cxx b/sw/source/ui/config/optpage.cxx
index fd5f04d57321..637c583db442 100644
--- a/sw/source/ui/config/optpage.cxx
+++ b/sw/source/ui/config/optpage.cxx
@@ -497,15 +497,15 @@ SwStdFontTabPage::SwStdFontTabPage(weld::Container* pPage, weld::DialogControlle
, m_sScriptComplex(SwResId(ST_SCRIPT_CTL))
, m_xLabelFT(m_xBuilder->weld_label("label1"))
, m_xStandardBox(m_xBuilder->weld_combo_box("standardbox"))
- , m_xStandardHeightLB(new SvtFontSizeBox(m_xBuilder->weld_combo_box("standardheight")))
+ , m_xStandardHeightLB(new FontSizeBox(m_xBuilder->weld_combo_box("standardheight")))
, m_xTitleBox(m_xBuilder->weld_combo_box("titlebox"))
- , m_xTitleHeightLB(new SvtFontSizeBox(m_xBuilder->weld_combo_box("titleheight")))
+ , m_xTitleHeightLB(new FontSizeBox(m_xBuilder->weld_combo_box("titleheight")))
, m_xListBox(m_xBuilder->weld_combo_box("listbox"))
- , m_xListHeightLB(new SvtFontSizeBox(m_xBuilder->weld_combo_box("listheight")))
+ , m_xListHeightLB(new FontSizeBox(m_xBuilder->weld_combo_box("listheight")))
, m_xLabelBox(m_xBuilder->weld_combo_box("labelbox"))
- , m_xLabelHeightLB(new SvtFontSizeBox(m_xBuilder->weld_combo_box("labelheight")))
+ , m_xLabelHeightLB(new FontSizeBox(m_xBuilder->weld_combo_box("labelheight")))
, m_xIdxBox(m_xBuilder->weld_combo_box("idxbox"))
- , m_xIndexHeightLB(new SvtFontSizeBox(m_xBuilder->weld_combo_box("indexheight")))
+ , m_xIndexHeightLB(new FontSizeBox(m_xBuilder->weld_combo_box("indexheight")))
, m_xStandardPB(m_xBuilder->weld_button("standard"))
{
m_xStandardBox->make_sorted();
@@ -948,7 +948,7 @@ IMPL_LINK( SwStdFontTabPage, ModifyHdl, weld::ComboBox&, rBox, void )
IMPL_LINK( SwStdFontTabPage, LoseFocusHdl, weld::Widget&, rControl, void )
{
weld::ComboBox& rBox = dynamic_cast<weld::ComboBox&>(rControl);
- SvtFontSizeBox* pHeightLB = nullptr;
+ FontSizeBox* pHeightLB = nullptr;
const OUString sEntry = rBox.get_active_text();
if (&rBox == m_xStandardBox.get())
{