aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/colorpreviewhoverhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/texteditor/colorpreviewhoverhandler.cpp')
-rw-r--r--src/plugins/texteditor/colorpreviewhoverhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/texteditor/colorpreviewhoverhandler.cpp b/src/plugins/texteditor/colorpreviewhoverhandler.cpp
index ea8b1d0dd4..f23ee0a4bf 100644
--- a/src/plugins/texteditor/colorpreviewhoverhandler.cpp
+++ b/src/plugins/texteditor/colorpreviewhoverhandler.cpp
@@ -222,7 +222,7 @@ static bool extractFuncAndArgs(const QString &s,
retFuncName = removeWhitespace(s.mid(funcStart, funcEnd - funcStart + 1));
QString argStr = s.mid(openBrace + 1, closeBrace - openBrace - 1);
- retArgs = argStr.split(QLatin1Char(','), QString::KeepEmptyParts);
+ retArgs = argStr.split(',');
return true;
}