aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/syntax-highlighting/src/lib/worddelimiters_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/3rdparty/syntax-highlighting/src/lib/worddelimiters_p.h')
-rw-r--r--src/libs/3rdparty/syntax-highlighting/src/lib/worddelimiters_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/3rdparty/syntax-highlighting/src/lib/worddelimiters_p.h b/src/libs/3rdparty/syntax-highlighting/src/lib/worddelimiters_p.h
index 51708fc13f8..3fa5db10a44 100644
--- a/src/libs/3rdparty/syntax-highlighting/src/lib/worddelimiters_p.h
+++ b/src/libs/3rdparty/syntax-highlighting/src/lib/worddelimiters_p.h
@@ -30,14 +30,14 @@ public:
bool contains(QChar c) const;
/**
- * Appends the character @p c to word delimiter.
+ * Appends each character of @p s to word delimiters.
*/
- void append(QChar c);
+ void append(QStringView s);
/**
- * Removes the character @p c from word delimiters.
+ * Removes each character of @p s from word delimiters.
*/
- void remove(QChar c);
+ void remove(QStringView c);
private:
/**