diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-07 08:51:06 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-07 12:20:06 +0200 |
commit | ecf6f6f25663e81ebf18589b895a22bc5b6ffbab (patch) | |
tree | 578b7ec831d287e89500e59a28580b643f96ecbb /cui/source/dialogs/hyphen.cxx | |
parent | 00b3bcc64fc32165d19e78b99cc6f78317824806 (diff) |
loplugin:ostr in cui
Change-Id: I593eb3c02768423fc8cea8d93c112655860228d9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167258
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui/source/dialogs/hyphen.cxx')
-rw-r--r-- | cui/source/dialogs/hyphen.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cui/source/dialogs/hyphen.cxx b/cui/source/dialogs/hyphen.cxx index c06ecab9661f..afaf415468e8 100644 --- a/cui/source/dialogs/hyphen.cxx +++ b/cui/source/dialogs/hyphen.cxx @@ -393,7 +393,7 @@ SvxHyphenWordDialog::SvxHyphenWordDialog( weld::Widget* pParent, uno::Reference< linguistic2::XHyphenator > const &xHyphen, SvxSpellWrapper* pWrapper) - : SfxDialogController(pParent, "cui/ui/hyphenate.ui", "HyphenateDialog") + : SfxDialogController(pParent, u"cui/ui/hyphenate.ui"_ustr, u"HyphenateDialog"_ustr) , m_pHyphWrapper(pWrapper) , m_aActWord(std::move(aWord)) , m_nActLanguage(nLang) @@ -401,14 +401,14 @@ SvxHyphenWordDialog::SvxHyphenWordDialog( , m_nOldPos(0) , m_nHyphenationPositionsOffset(0) , m_bBusy(false) - , m_xWordEdit(m_xBuilder->weld_entry("worded")) - , m_xLeftBtn(m_xBuilder->weld_button("left")) - , m_xRightBtn(m_xBuilder->weld_button("right")) - , m_xOkBtn(m_xBuilder->weld_button("ok")) - , m_xContBtn(m_xBuilder->weld_button("continue")) - , m_xDelBtn(m_xBuilder->weld_button("delete")) - , m_xHyphAll(m_xBuilder->weld_button("hyphall")) - , m_xCloseBtn(m_xBuilder->weld_button("close")) + , m_xWordEdit(m_xBuilder->weld_entry(u"worded"_ustr)) + , m_xLeftBtn(m_xBuilder->weld_button(u"left"_ustr)) + , m_xRightBtn(m_xBuilder->weld_button(u"right"_ustr)) + , m_xOkBtn(m_xBuilder->weld_button(u"ok"_ustr)) + , m_xContBtn(m_xBuilder->weld_button(u"continue"_ustr)) + , m_xDelBtn(m_xBuilder->weld_button(u"delete"_ustr)) + , m_xHyphAll(m_xBuilder->weld_button(u"hyphall"_ustr)) + , m_xCloseBtn(m_xBuilder->weld_button(u"close"_ustr)) { m_nWordEditWidth = m_xWordEdit->get_width_chars(); m_aLabel = m_xDialog->get_title(); |