diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-17 12:43:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-10-17 18:11:09 +0200 |
commit | 73df133143daaff14c364468598bb250db6aecb1 (patch) | |
tree | da58366b1b7c9c626970b9ba7e29f91cb4389cc4 /cui/source/options | |
parent | 1d822ece4f99efa7518c62cf5dd2f616c4fed8de (diff) |
rename TextEncodingBox back to SvxTextEncodingBox
Change-Id: I466a56a3b3204f960b9c6ce2dac836879112f5ab
Reviewed-on: https://gerrit.libreoffice.org/80945
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/options')
-rw-r--r-- | cui/source/options/opthtml.cxx | 2 | ||||
-rw-r--r-- | cui/source/options/opthtml.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/opthtml.cxx b/cui/source/options/opthtml.cxx index cfe4dc78473e..fca286ddbb7a 100644 --- a/cui/source/options/opthtml.cxx +++ b/cui/source/options/opthtml.cxx @@ -38,7 +38,7 @@ OfaHtmlTabPage::OfaHtmlTabPage(weld::Container* pPage, weld::DialogController* p , m_xStarBasicWarningCB(m_xBuilder->weld_check_button("starbasicwarning")) , m_xPrintExtensionCB(m_xBuilder->weld_check_button("printextension")) , m_xSaveGrfLocalCB(m_xBuilder->weld_check_button("savegrflocal")) - , m_xCharSetLB(new TextEncodingBox(m_xBuilder->weld_combo_box("charset"))) + , m_xCharSetLB(new SvxTextEncodingBox(m_xBuilder->weld_combo_box("charset"))) { // replace placeholder with UI string from language list OUString aText(m_xNumbersEnglishUSCB->get_label()); diff --git a/cui/source/options/opthtml.hxx b/cui/source/options/opthtml.hxx index 96131571fcd9..0468518f1638 100644 --- a/cui/source/options/opthtml.hxx +++ b/cui/source/options/opthtml.hxx @@ -41,7 +41,7 @@ class OfaHtmlTabPage : public SfxTabPage std::unique_ptr<weld::CheckButton> m_xStarBasicWarningCB; std::unique_ptr<weld::CheckButton> m_xPrintExtensionCB; std::unique_ptr<weld::CheckButton> m_xSaveGrfLocalCB; - std::unique_ptr<TextEncodingBox> m_xCharSetLB; + std::unique_ptr<SvxTextEncodingBox> m_xCharSetLB; DECL_LINK(CheckBoxHdl_Impl, weld::ToggleButton&, void); |