summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-05-08 11:24:50 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-05-11 23:05:38 +0200
commitd4f07d4c08724602d0a13045bec957e285d45c0d (patch)
treec3cd07e8a5780e03299cac24fadeec3a9ddc8cc8 /sw
parent9dac3118ee80bea900cede71e4ef616bad165401 (diff)
replace createFromAscii with OUString literals in OConfigurationNode
Change-Id: I19017bc993f0adafdae32313e0e01e69e1bbe80b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167517 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/fldui/fldtdlg.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/ui/fldui/fldtdlg.cxx b/sw/source/ui/fldui/fldtdlg.cxx
index 5691935136e3..9504a2d4c022 100644
--- a/sw/source/ui/fldui/fldtdlg.cxx
+++ b/sw/source/ui/fldui/fldtdlg.cxx
@@ -78,8 +78,7 @@ SwFieldDlg::SwFieldDlg(SfxBindings* pB, SwChildWinWrapper* pCW, weld::Window *pP
#if HAVE_FEATURE_DBCONNECTIVITY && !ENABLE_FUZZERS
bool bDatabaseFields = true;
- aCfgRoot.getNodeValue(
- OUString("DatabaseFields")) >>= bDatabaseFields;
+ aCfgRoot.getNodeValue(u"DatabaseFields"_ustr) >>= bDatabaseFields;
if (bDatabaseFields)
AddTabPage("database", SwFieldDBPage::Create, nullptr);