diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-10-11 18:43:26 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-10-11 18:43:26 (GMT) |
commit | 80979c559d5b6fc677989e077c9890943dac054f (patch) | |
tree | 67ec6616171bb9e4931f0f284e8286c24349c139 /tests/auto/declarative/qdeclarativeecmascript/data/objectName.qml | |
parent | b2cbe3659bb39204922fa43d9f9625a9de2f5e29 (diff) | |
parent | 9849d8f5f1c0c3f03d3f83cc51eea2beb3d9cbbc (diff) | |
download | Qt-80979c559d5b6fc677989e077c9890943dac054f.zip Qt-80979c559d5b6fc677989e077c9890943dac054f.tar.gz Qt-80979c559d5b6fc677989e077c9890943dac054f.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml:
Fix autotest on windows
Test for absent qmldir
Allow objectName to be used in QML bindings
Install the declarative objectNameChanged callback
Don't give focus to a FocusScope that has had focus explicitly cleared.
Add a declarative callback for when a QObject's objectName changes
Ensure GridView header is visible at the top of the view.
Allow aliases to value type properties
Image.sourceSize is incorrect after changing Image.source
Test for QTBUG-13685
Don't forward keys to invisible items.
Disable Text {} image caching by default
Check plugin and QML file case on Mac and Windows
Add test for QTBUG-14279
Ensure that onRelease is called for doubleClick events.
emit currentSectionChanged when section changes in ListView.
Remove some unnecessary includes in cpp files
Ensure Flickable.contentX and Flickable.contentY return correct values.
Don't allow multiple values to be assigned to a singular property
Fix dragging items within a PathView
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/objectName.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativeecmascript/data/objectName.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/objectName.qml b/tests/auto/declarative/qdeclarativeecmascript/data/objectName.qml new file mode 100644 index 0000000..ca8c90d --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/objectName.qml @@ -0,0 +1,8 @@ +import QtQuick 1.0 + +QtObject { + objectName: "hello" + + property string test1: objectName + property string test2: objectName.substr(1, 3) +} |