diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-02 12:48:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-02 20:09:09 +0200 |
commit | 3f4726c45e69a1582a91ea359434625db86868b2 (patch) | |
tree | 1286be420a6744bc1c7b6a546e6e7bef38f23fa0 /forms/source/solar/control | |
parent | e783a1c09093f3dbaf778661b77a2d5872a2029d (diff) |
replace createFromAscii with OUString literals in forms
Change-Id: I688fbf8777736a3f55ab5c0d9c8acaf55f83d8b9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167009
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'forms/source/solar/control')
-rw-r--r-- | forms/source/solar/control/navtoolbar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/solar/control/navtoolbar.cxx b/forms/source/solar/control/navtoolbar.cxx index 7193ac4532c1..f637ca3154d5 100644 --- a/forms/source/solar/control/navtoolbar.cxx +++ b/forms/source/solar/control/navtoolbar.cxx @@ -633,7 +633,7 @@ namespace frm { if (!m_pDispatcher) return; - m_pDispatcher->dispatchWithArgument( FormFeature::MoveAbsolute, "Position", Any( static_cast<sal_Int32>(nRecord) ) ); + m_pDispatcher->dispatchWithArgument( FormFeature::MoveAbsolute, u"Position"_ustr, Any( static_cast<sal_Int32>(nRecord) ) ); } } // namespace frm |