summaryrefslogtreecommitdiff
path: root/uui
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 /uui
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 'uui')
-rw-r--r--uui/source/iahndl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx
index 2f039a85fc67..7e3bcca41313 100644
--- a/uui/source/iahndl.cxx
+++ b/uui/source/iahndl.cxx
@@ -344,12 +344,12 @@ bool UUIInteractionHelper::handleTypedHandlerImplementations( Reference< XIntera
::utl::OConfigurationNode aType( aTypesNode.openNode( type ) );
// and there's a child denoting how the responsibility propagates
OUString sPropagation;
- OSL_VERIFY( aType.getNodeValue( "Propagation" ) >>= sPropagation );
+ OSL_VERIFY( aType.getNodeValue( u"Propagation"_ustr ) >>= sPropagation );
if ( lcl_matchesRequest( aRequest, type, sPropagation ) )
{
// retrieve the service/implementation name of the handler
OUString sServiceName;
- OSL_VERIFY( aHandlerNode.getNodeValue( "ServiceName" ) >>= sServiceName );
+ OSL_VERIFY( aHandlerNode.getNodeValue( u"ServiceName"_ustr ) >>= sServiceName );
// cache the information who feels responsible for requests of this type
m_aTypedCustomHandlers[ aRequest.getValueTypeName() ] = sServiceName;
// actually handle the request