aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/testbench/ColorEditor.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/manual/testbench/ColorEditor.qml b/tests/manual/testbench/ColorEditor.qml
index 1e10d6d2..7f472f9b 100644
--- a/tests/manual/testbench/ColorEditor.qml
+++ b/tests/manual/testbench/ColorEditor.qml
@@ -48,7 +48,7 @@
**
****************************************************************************/
-import QtQuick 2.12
+import QtQuick 2.14
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.12
@@ -71,8 +71,8 @@ RowLayout {
TextField {
id: textField
- validator: RegExpValidator{
- regExp: /#?[0-9a-fA-F]*/
+ validator: RegularExpressionValidator{
+ regularExpression: /#?[0-9a-fA-F]*/
}
Layout.preferredWidth: 200