14 lines
574 B
Diff
14 lines
574 B
Diff
|
diff --git a/plugin/x/src/xpl_regex.cc b/plugin/x/src/xpl_regex.cc
|
||
|
index eefb14d78b7..a77a807459c 100644
|
||
|
--- a/plugin/x/src/xpl_regex.cc
|
||
|
+++ b/plugin/x/src/xpl_regex.cc
|
||
|
@@ -53,7 +53,7 @@ bool xpl::Regex::match(const char *value) const {
|
||
|
* and parse the text patter each time that xpl::Regex::match
|
||
|
* is called.
|
||
|
*/
|
||
|
- UnicodeString value_as_utf8{icu::UnicodeString::fromUTF8(value)};
|
||
|
+ icu::UnicodeString value_as_utf8{icu::UnicodeString::fromUTF8(value)};
|
||
|
std::unique_ptr<icu::RegexMatcher> regexp{
|
||
|
m_pattern->matcher(value_as_utf8, match_status)};
|
||
|
|