aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2020-03-26 09:15:44 +0100
committerLars Knoll <lars.knoll@qt.io>2020-03-26 14:48:51 +0100
commit620d5d27721f3139537c7f49d1946b9721e25d14 (patch)
treeb3fa62c28f755203406ce8f3da68a27b3065cf06 /tests
parente4c978d586dc78c5c6cb439d40accbed68ae972a (diff)
Remove usage of filterRegExp
It's going away together with other QRegExp based apis. Change-Id: I7363f5c3c944d5a56fefbfda628e9178847ae2da Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/quick/qquicklistview/data/proxytest.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/quick/qquicklistview/data/proxytest.qml b/tests/auto/quick/qquicklistview/data/proxytest.qml
index 11b991035e..2cd95cab74 100644
--- a/tests/auto/quick/qquicklistview/data/proxytest.qml
+++ b/tests/auto/quick/qquicklistview/data/proxytest.qml
@@ -38,7 +38,7 @@ Item {
QSortFilterProxyModel {
id: outerModel
sourceModel: innerModel
- filterRegExp: RegExp("^H.*$")
+ filterRegularExpression: RegExp("^H.*$")
}
width: 400