diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-03 10:04:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-05 11:39:28 +0200 |
commit | 219cd2e88a0dd33de49b63d8d5ea0868183c1300 (patch) | |
tree | 9e0ee2d3b17fc775a2dfafe4cdb6d2154afd0640 /xmloff/inc | |
parent | 29c32b847ebc1eabb33523d7f153b30520c60468 (diff) |
replace createFromAscii with OUString literals in EnhancedCustomShapeToken
Change-Id: I1d7f6a22891b40c540cff0cee4150c95e52ba728
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167152
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/inc')
-rw-r--r-- | xmloff/inc/EnhancedCustomShapeToken.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/inc/EnhancedCustomShapeToken.hxx b/xmloff/inc/EnhancedCustomShapeToken.hxx index dc0206fcb0c7..9eaf87973170 100644 --- a/xmloff/inc/EnhancedCustomShapeToken.hxx +++ b/xmloff/inc/EnhancedCustomShapeToken.hxx @@ -155,9 +155,9 @@ namespace xmloff::EnhancedCustomShapeToken { EAS_NotFound }; - EnhancedCustomShapeTokenEnum EASGet( std::u16string_view ); + EnhancedCustomShapeTokenEnum EASGet( const OUString& ); EnhancedCustomShapeTokenEnum EASGet( sal_Int32 nToken ); - OUString EASGet( const EnhancedCustomShapeTokenEnum ); + const OUString & EASGet( const EnhancedCustomShapeTokenEnum ); } |