- 
    Bug 
- 
    Resolution: Done
- 
    P3: Somewhat important 
- 
    4.8.0
- 
    None
- 
        cd9103f7f2514b6380aa460ac9d6454e132be307
// import QtQuick 1.0 // to target S60 5th Edition or Maemo 5 import QtQuick 1.1 Rectangle { width: 360 height: 360 TextInput { anchors.centerIn: parent text: "Hello World" validator: RegExpValidator { regExp: ".*" } } MouseArea { anchors.fill: parent onClicked: { Qt.quit(); } } }
results in the error:
file:///Users/darke/Code/tmp/tiregexp/tiregexp.qml:10:40: Invalid property assignment: unsupported type "QRegExp" 
     		validator: RegExpValidator 
 
     		                                     ^ 
As far as I know this is valid.