From 77c9c2c993da3bc9302131cef4345db114696333 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 17 Oct 2019 13:56:16 +0100 Subject: rename LanguageBox back to SvxLanguageBox MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I9bd29b7377fdf0e1ba36cc021e7e78f83bb1c12c Reviewed-on: https://gerrit.libreoffice.org/80960 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- sd/source/ui/dlg/dlgfield.cxx | 2 +- sd/source/ui/dlg/headerfooterdlg.cxx | 4 ++-- sd/source/ui/inc/dlgfield.hxx | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'sd/source/ui') diff --git a/sd/source/ui/dlg/dlgfield.cxx b/sd/source/ui/dlg/dlgfield.cxx index 50d394c3eb10..164fbac3b753 100644 --- a/sd/source/ui/dlg/dlgfield.cxx +++ b/sd/source/ui/dlg/dlgfield.cxx @@ -41,7 +41,7 @@ SdModifyFieldDlg::SdModifyFieldDlg(weld::Window* pWindow, const SvxFieldData* pI , m_pField(pInField) , m_xRbtFix(m_xBuilder->weld_radio_button("fixedRB")) , m_xRbtVar(m_xBuilder->weld_radio_button("varRB")) - , m_xLbLanguage(new LanguageBox(m_xBuilder->weld_combo_box("languageLB"))) + , m_xLbLanguage(new SvxLanguageBox(m_xBuilder->weld_combo_box("languageLB"))) , m_xLbFormat(m_xBuilder->weld_combo_box("formatLB")) { m_xLbLanguage->SetLanguageList( SvxLanguageListFlags::ALL|SvxLanguageListFlags::ONLY_KNOWN, false ); diff --git a/sd/source/ui/dlg/headerfooterdlg.cxx b/sd/source/ui/dlg/headerfooterdlg.cxx index e93b40d47514..d30af2b22110 100644 --- a/sd/source/ui/dlg/headerfooterdlg.cxx +++ b/sd/source/ui/dlg/headerfooterdlg.cxx @@ -124,7 +124,7 @@ private: std::unique_ptr mxTBDateTimeFixed; std::unique_ptr mxCBDateTimeFormat; std::unique_ptr mxFTDateTimeLanguage; - std::unique_ptr mxCBDateTimeLanguage; + std::unique_ptr mxCBDateTimeLanguage; std::unique_ptr mxCBFooter; std::unique_ptr mxFooterBox; std::unique_ptr mxTBFooter; @@ -357,7 +357,7 @@ HeaderFooterTabPage::HeaderFooterTabPage(weld::Container* pParent, SdDrawDocumen , mxTBDateTimeFixed(mxBuilder->weld_entry("datetime_value")) , mxCBDateTimeFormat(mxBuilder->weld_combo_box("datetime_format_list")) , mxFTDateTimeLanguage(mxBuilder->weld_label("language_label")) - , mxCBDateTimeLanguage(new LanguageBox(mxBuilder->weld_combo_box("language_list"))) + , mxCBDateTimeLanguage(new SvxLanguageBox(mxBuilder->weld_combo_box("language_list"))) , mxCBFooter(mxBuilder->weld_check_button("footer_cb")) , mxFooterBox(mxBuilder->weld_widget("footer_box" )) , mxTBFooter(mxBuilder->weld_entry("footer_text")) diff --git a/sd/source/ui/inc/dlgfield.hxx b/sd/source/ui/inc/dlgfield.hxx index b15b0f864cfa..63ff6a1d5d0f 100644 --- a/sd/source/ui/inc/dlgfield.hxx +++ b/sd/source/ui/inc/dlgfield.hxx @@ -25,7 +25,7 @@ #include class SvxFieldData; -class LanguageBox; +class SvxLanguageBox; /** * dialog to adjust field-commands @@ -38,7 +38,7 @@ private: std::unique_ptr m_xRbtFix; std::unique_ptr m_xRbtVar; - std::unique_ptr m_xLbLanguage; + std::unique_ptr m_xLbLanguage; std::unique_ptr m_xLbFormat; void FillFormatList(); -- cgit