summaryrefslogtreecommitdiff
path: root/include/codemaker
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-04-21 21:09:07 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-04-22 13:27:56 +0200
commit9820f11ad2b1ef32e5527eec519b0a7c766e2602 (patch)
tree2ffa9a42bed16ab9a790d78b8f42a76996fdbe01 /include/codemaker
parente4d1731ba3e8bac2801d1b76cfb66bf7f9795468 (diff)
address review comments on "use more string in unoidl.."
on commit 2d9291b9433c9645b0870525211f74bfb1151555 Author: Noel Grandin <noel.grandin@collabora.co.uk> Date: Thu Apr 21 12:53:15 2022 +0200 use more string_view in unoidl,codemaker Primarily reverting the findEntity call-chain to use OUString instead of std::u16string_view. Change-Id: Ib01b9473c859bba3791563df753823bbf0a87ce0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133302 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/codemaker')
-rw-r--r--include/codemaker/typemanager.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/codemaker/typemanager.hxx b/include/codemaker/typemanager.hxx
index 0fa75caa359c..3e6f67fe4b3f 100644
--- a/include/codemaker/typemanager.hxx
+++ b/include/codemaker/typemanager.hxx
@@ -43,9 +43,9 @@ class TypeManager final : public salhelper::SimpleReferenceObject {
public:
TypeManager();
- void loadProvider(std::u16string_view uri, bool primary);
+ void loadProvider(OUString const & uri, bool primary);
- bool foundAtPrimaryProvider(std::u16string_view name) const;
+ bool foundAtPrimaryProvider(OUString const & name) const;
codemaker::UnoType::Sort getSort(
OUString const & name, rtl::Reference< unoidl::Entity > * entity = nullptr,