aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquicktextinput/data/qtbug-19956regexp.qml
blob: b5af13cc4cd723535cab4f26ff392c471fd54cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

TextInput {
    id: textinput
    property variant regexvalue
    height: 50
    width: 200
    text: "abc"
    validator: RegExpValidator {
        id: regexpvalidator
        regExp: regexvalue
    }
}