diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-28 11:40:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-28 18:02:08 +0200 |
commit | 592947c1a421eae46d6268798cf3eab6bc6f0dc6 (patch) | |
tree | 0ae0460a42d4b99705a41169e2c1448166ecea6d /sc/source/ui/unoobj/filtuno.cxx | |
parent | 2cb410d1a7e39f01bd1e8488b220d1bc6d9674a3 (diff) |
loplugin:ostr in sc/../unoobj
Change-Id: I182a5f28c872eb4dd96b930b86b9aef42459f191
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168145
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/unoobj/filtuno.cxx')
-rw-r--r-- | sc/source/ui/unoobj/filtuno.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/unoobj/filtuno.cxx b/sc/source/ui/unoobj/filtuno.cxx index b5e9421b5440..e5ee8de17d29 100644 --- a/sc/source/ui/unoobj/filtuno.cxx +++ b/sc/source/ui/unoobj/filtuno.cxx @@ -374,8 +374,8 @@ void SAL_CALL ScFilterOptionsObj::setSourceDocument( const uno::Reference<lang:: void SAL_CALL ScFilterOptionsObj::initialize(const uno::Sequence<uno::Any>& rArguments) { ::comphelper::NamedValueCollection aProperties(rArguments); - if (aProperties.has("ParentWindow")) - aProperties.get("ParentWindow") >>= xDialogParent; + if (aProperties.has(u"ParentWindow"_ustr)) + aProperties.get(u"ParentWindow"_ustr) >>= xDialogParent; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |