summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/dlgattr.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-05-07 08:51:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-05-07 12:53:22 +0200
commitd52a4dba6a247a0ee2e1c419533818fbfd281f71 (patch)
tree28bd1fb6815b1cdd347111f9e620de654a9356b3 /dbaccess/source/ui/dlg/dlgattr.cxx
parent04d383191403f400d7917412ea72a441e120b333 (diff)
loplugin:ostr in dbaccess
Change-Id: I6d720ef94d9f29c120f292b844721621e6630856 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167259 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess/source/ui/dlg/dlgattr.cxx')
-rw-r--r--dbaccess/source/ui/dlg/dlgattr.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/dlg/dlgattr.cxx b/dbaccess/source/ui/dlg/dlgattr.cxx
index 24a1c4e81c2d..2e8b16910584 100644
--- a/dbaccess/source/ui/dlg/dlgattr.cxx
+++ b/dbaccess/source/ui/dlg/dlgattr.cxx
@@ -32,15 +32,15 @@ using namespace dbaui;
SbaSbAttrDlg::SbaSbAttrDlg(weld::Widget* pParent, const SfxItemSet* pCellAttrs,
SvNumberFormatter* pFormatter, bool bHasFormat)
- : SfxTabDialogController(pParent, "dbaccess/ui/fielddialog.ui", "FieldDialog", pCellAttrs)
+ : SfxTabDialogController(pParent, u"dbaccess/ui/fielddialog.ui"_ustr, u"FieldDialog"_ustr, pCellAttrs)
{
pNumberInfoItem.reset( new SvxNumberInfoItem( pFormatter, SID_ATTR_NUMBERFORMAT_INFO ) );
if (bHasFormat)
- AddTabPage("format", RID_SVXPAGE_NUMBERFORMAT);
+ AddTabPage(u"format"_ustr, RID_SVXPAGE_NUMBERFORMAT);
else
- RemoveTabPage("format");
- AddTabPage("alignment", RID_SVXPAGE_ALIGNMENT);
+ RemoveTabPage(u"format"_ustr);
+ AddTabPage(u"alignment"_ustr, RID_SVXPAGE_ALIGNMENT);
}
SbaSbAttrDlg::~SbaSbAttrDlg()