diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-10-19 10:30:16 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-10-21 07:04:47 +0200 |
commit | d5fa192f54eeb4294748d262034f64556fabd4fb (patch) | |
tree | 91c0d5027437dbf5b89d03cb3eb2daa94384ecce /fpicker | |
parent | fc1ba4d17fd71656205697a6cf19432037e4a9d6 (diff) |
Extended loplugin:ostr: Automatic rewrite O[U]StringLiteral: fpicker
Change-Id: Id2e70665c78f5e5fd3dc7ab0f5889f83880804ba
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158299
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index 00685bc25d7f..b3e279f6b471 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -236,7 +236,7 @@ namespace if ( xProviderProps.is() ) { Reference< XPropertySetInfo > xPropInfo = xProviderProps->getPropertySetInfo(); - static constexpr OUStringLiteral sHomeDirPropertyName( u"HomeDirectory" ); + static constexpr OUString sHomeDirPropertyName( u"HomeDirectory"_ustr ); if ( !xPropInfo.is() || xPropInfo->hasPropertyByName( sHomeDirPropertyName ) ) { OUString sHomeDirectory; |