summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-10-17 13:56:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-10-17 20:15:40 +0200
commit77c9c2c993da3bc9302131cef4345db114696333 (patch)
treef93165e487a9cc07d0f3ca6c26d0ddbe95b7a311 /sd
parent10ade7465ba2b60fbda93ae3436ece01b3366a72 (diff)
rename LanguageBox back to SvxLanguageBox
Change-Id: I9bd29b7377fdf0e1ba36cc021e7e78f83bb1c12c Reviewed-on: https://gerrit.libreoffice.org/80960 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/dlg/dlgfield.cxx2
-rw-r--r--sd/source/ui/dlg/headerfooterdlg.cxx4
-rw-r--r--sd/source/ui/inc/dlgfield.hxx4
3 files changed, 5 insertions, 5 deletions
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<weld::Entry> mxTBDateTimeFixed;
std::unique_ptr<weld::ComboBox> mxCBDateTimeFormat;
std::unique_ptr<weld::Label> mxFTDateTimeLanguage;
- std::unique_ptr<LanguageBox> mxCBDateTimeLanguage;
+ std::unique_ptr<SvxLanguageBox> mxCBDateTimeLanguage;
std::unique_ptr<weld::CheckButton> mxCBFooter;
std::unique_ptr<weld::Widget> mxFooterBox;
std::unique_ptr<weld::Entry> 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 <svl/itemset.hxx>
class SvxFieldData;
-class LanguageBox;
+class SvxLanguageBox;
/**
* dialog to adjust field-commands
@@ -38,7 +38,7 @@ private:
std::unique_ptr<weld::RadioButton> m_xRbtFix;
std::unique_ptr<weld::RadioButton> m_xRbtVar;
- std::unique_ptr<LanguageBox> m_xLbLanguage;
+ std::unique_ptr<SvxLanguageBox> m_xLbLanguage;
std::unique_ptr<weld::ComboBox> m_xLbFormat;
void FillFormatList();