summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/MultiPropertySetHandler.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/chart/MultiPropertySetHandler.hxx')
-rw-r--r--xmloff/source/chart/MultiPropertySetHandler.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmloff/source/chart/MultiPropertySetHandler.hxx b/xmloff/source/chart/MultiPropertySetHandler.hxx
index ddbd9881f5de..a89e1c1ee7ed 100644
--- a/xmloff/source/chart/MultiPropertySetHandler.hxx
+++ b/xmloff/source/chart/MultiPropertySetHandler.hxx
@@ -22,6 +22,7 @@
#include <map>
#include <memory>
+#include <string_view>
#include <rtl/ustring.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
@@ -94,7 +95,7 @@ class OUStringComparison
{
public:
/// Compare two strings. Returns true if the first is before the second.
- bool operator() (const OUString & a, const OUString & b) const
+ bool operator() (const OUString & a, std::u16string_view b) const
{
return (a.compareTo (b) < 0);
}