summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/text/qstringref/tst_qstringref.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/text/qstringref/tst_qstringref.cpp')
-rw-r--r--tests/auto/corelib/text/qstringref/tst_qstringref.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/corelib/text/qstringref/tst_qstringref.cpp b/tests/auto/corelib/text/qstringref/tst_qstringref.cpp
index 6f01947131..dcc825942d 100644
--- a/tests/auto/corelib/text/qstringref/tst_qstringref.cpp
+++ b/tests/auto/corelib/text/qstringref/tst_qstringref.cpp
@@ -2161,18 +2161,18 @@ void tst_QStringRef::split()
QVERIFY(list == result);
}
- list = ref.split(sep, QString::KeepEmptyParts);
+ list = ref.split(sep, Qt::KeepEmptyParts);
QVERIFY(list == result);
if (sep.size() == 1) {
- list = ref.split(sep.at(0), QString::KeepEmptyParts);
+ list = ref.split(sep.at(0), Qt::KeepEmptyParts);
QVERIFY(list == result);
}
result.removeAll("");
- list = ref.split(sep, QString::SkipEmptyParts);
+ list = ref.split(sep, Qt::SkipEmptyParts);
QVERIFY(list == result);
if (sep.size() == 1) {
- list = ref.split(sep.at(0), QString::SkipEmptyParts);
+ list = ref.split(sep.at(0), Qt::SkipEmptyParts);
QVERIFY(list == result);
}
}