diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-13 14:49:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-13 19:13:53 +0200 |
commit | 16a9092595761acca0392b4e177b309371d04f15 (patch) | |
tree | 6a6a145f2a27d1bf3e2f405ab205926f996abd66 /svtools/source/contnr | |
parent | 5f739e1f35a600984a4f99d6394e821a71b69712 (diff) |
loplugin:ostr in svtools
Change-Id: If00c16527fb861a86f5dde195ab612bbab3a53c0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167594
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'svtools/source/contnr')
-rw-r--r-- | svtools/source/contnr/querydelete.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svtools/source/contnr/querydelete.cxx b/svtools/source/contnr/querydelete.cxx index 9b97983f7d1d..d0ae79a08fc3 100644 --- a/svtools/source/contnr/querydelete.cxx +++ b/svtools/source/contnr/querydelete.cxx @@ -22,8 +22,9 @@ namespace svtools { QueryDeleteDlg_Impl::QueryDeleteDlg_Impl(weld::Widget* pParent, std::u16string_view rName) - : MessageDialogController(pParent, "svt/ui/querydeletedialog.ui", "QueryDeleteDialog") - , m_xAllButton(m_xBuilder->weld_button("all")) + : MessageDialogController(pParent, u"svt/ui/querydeletedialog.ui"_ustr, + u"QueryDeleteDialog"_ustr) + , m_xAllButton(m_xBuilder->weld_button(u"all"_ustr)) { // display specified texts m_xDialog->set_secondary_text(m_xDialog->get_secondary_text().replaceFirst("%s", rName)); |