diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-03 14:55:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-03 18:38:56 +0200 |
commit | 740353bc31583d9e8ad77a2b2289a204466ccf9e (patch) | |
tree | bb1b053cd1d79ad9e5d656b61d7febd7b693a15c /basctl/source/accessibility | |
parent | 86d2d8e03763e97a067b1dca8cb8d9829064abdc (diff) |
loplugin:ostr in basctl
Change-Id: I59c25d52d8f59ff1b7ab498041c2888b8e718f64
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167056
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basctl/source/accessibility')
-rw-r--r-- | basctl/source/accessibility/accessibledialogcontrolshape.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/accessibility/accessibledialogcontrolshape.cxx b/basctl/source/accessibility/accessibledialogcontrolshape.cxx index c19741c95afa..4abd4076d26a 100644 --- a/basctl/source/accessibility/accessibledialogcontrolshape.cxx +++ b/basctl/source/accessibility/accessibledialogcontrolshape.cxx @@ -372,7 +372,7 @@ OUString AccessibleDialogControlShape::getAccessibleDescription( ) { OExternalLockGuard aGuard( this ); - return GetModelStringProperty( "HelpText" ); + return GetModelStringProperty( u"HelpText"_ustr ); } @@ -380,7 +380,7 @@ OUString AccessibleDialogControlShape::getAccessibleName( ) { OExternalLockGuard aGuard( this ); - return GetModelStringProperty( "Name" ); + return GetModelStringProperty( u"Name"_ustr ); } |