summaryrefslogtreecommitdiffstats
path: root/src/qdoc/doc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/doc.cpp')
-rw-r--r--src/qdoc/doc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qdoc/doc.cpp b/src/qdoc/doc.cpp
index f5ea0a61d..5b52e9e1a 100644
--- a/src/qdoc/doc.cpp
+++ b/src/qdoc/doc.cpp
@@ -2439,7 +2439,7 @@ QString DocParser::getCode(int cmd, CodeMarker *marker, const QString &argStr)
QString code = untabifyEtc(getUntilEnd(cmd));
if (!argStr.isEmpty()) {
- QStringList args = argStr.split(" ", QString::SkipEmptyParts);
+ QStringList args = argStr.split(" ", Qt::SkipEmptyParts);
int paramNo, j = 0;
while (j < code.size()) {
if (code[j] == '\\' && j < code.size() - 1 && (paramNo = code[j + 1].digitValue()) >= 1