diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-17 12:41:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-28 09:25:32 +0200 |
commit | a4d53515faac28e7749b0c4d9a4e6b59aad63225 (patch) | |
tree | c8e48082dff8fc9e9d62944ccd6befb8b9eb3af7 /sd/source/ui/dlg/dlgchar.cxx | |
parent | 9376df3c03d361a4c01493066db2a11a770d6cc9 (diff) |
loplugin:ostr in sd/../ui
Change-Id: I19acde24fd8a4014807318d97433b81814cadd75
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167768
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/dlg/dlgchar.cxx')
-rw-r--r-- | sd/source/ui/dlg/dlgchar.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/dlg/dlgchar.cxx b/sd/source/ui/dlg/dlgchar.cxx index 074f5d7d1301..665cc3739bf0 100644 --- a/sd/source/ui/dlg/dlgchar.cxx +++ b/sd/source/ui/dlg/dlgchar.cxx @@ -32,16 +32,16 @@ */ SdCharDlg::SdCharDlg(weld::Window* pParent, const SfxItemSet* pAttr, const SfxObjectShell* pDocShell) - : SfxTabDialogController(pParent, "modules/sdraw/ui/drawchardialog.ui", - "DrawCharDialog", pAttr) + : SfxTabDialogController(pParent, u"modules/sdraw/ui/drawchardialog.ui"_ustr, + u"DrawCharDialog"_ustr, pAttr) , rDocShell(*pDocShell) { SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); - AddTabPage("RID_SVXPAGE_CHAR_NAME", pFact->GetTabPageCreatorFunc(RID_SVXPAGE_CHAR_NAME), nullptr); - AddTabPage("RID_SVXPAGE_CHAR_EFFECTS", pFact->GetTabPageCreatorFunc(RID_SVXPAGE_CHAR_EFFECTS), nullptr); - AddTabPage("RID_SVXPAGE_CHAR_POSITION", pFact->GetTabPageCreatorFunc(RID_SVXPAGE_CHAR_POSITION), nullptr); - AddTabPage("RID_SVXPAGE_BKG", pFact->GetTabPageCreatorFunc(RID_SVXPAGE_BKG), nullptr); + AddTabPage(u"RID_SVXPAGE_CHAR_NAME"_ustr, pFact->GetTabPageCreatorFunc(RID_SVXPAGE_CHAR_NAME), nullptr); + AddTabPage(u"RID_SVXPAGE_CHAR_EFFECTS"_ustr, pFact->GetTabPageCreatorFunc(RID_SVXPAGE_CHAR_EFFECTS), nullptr); + AddTabPage(u"RID_SVXPAGE_CHAR_POSITION"_ustr, pFact->GetTabPageCreatorFunc(RID_SVXPAGE_CHAR_POSITION), nullptr); + AddTabPage(u"RID_SVXPAGE_BKG"_ustr, pFact->GetTabPageCreatorFunc(RID_SVXPAGE_BKG), nullptr); } void SdCharDlg::PageCreated(const OUString& rId, SfxTabPage &rPage) |