diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-01 20:34:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-03 09:12:32 +0200 |
commit | ddef1e2c017b7d8e421dedc1a0ce722ff4208985 (patch) | |
tree | 54e52c86e4e33bcb61eee44706117b1616e99624 /include/svtools | |
parent | 0a6d946694e4fcb39228c5e1fec58fcfd8a45989 (diff) |
add o3tl::equalsAscii
Change-Id: I042b8dcadbf7581de325c161763fe35aecde5ca2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133694
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/unoevent.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svtools/unoevent.hxx b/include/svtools/unoevent.hxx index acad27b51f44..825280e16b8a 100644 --- a/include/svtools/unoevent.hxx +++ b/include/svtools/unoevent.hxx @@ -136,10 +136,10 @@ protected: const SvMacroItemId nEvent ) = 0; /// convert an API event name to the event ID as used by SvxMacroItem - SvMacroItemId mapNameToEventID(const OUString& rName) const; + SvMacroItemId mapNameToEventID(std::u16string_view rName) const; /// get the event ID for the name; return 0 if not supported - SvMacroItemId getMacroID(const OUString& rName) const; + SvMacroItemId getMacroID(std::u16string_view rName) const; }; |