summaryrefslogtreecommitdiffstats
path: root/examples/declarative/ui-components/tabwidget/TabWidget.qml
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2010-12-03 00:50:43 (GMT)
committerBea Lam <bea.lam@nokia.com>2010-12-03 00:56:37 (GMT)
commitfe63d0ee5671ec4f0a1926ad8875b9f11789b105 (patch)
tree1ba5b6111642292b7d9a1142a6712c669a3c50be /examples/declarative/ui-components/tabwidget/TabWidget.qml
parent89f4a877c401e1ab18d3ed520d17440b3e9078e7 (diff)
downloadQt-fe63d0ee5671ec4f0a1926ad8875b9f11789b105.zip
Qt-fe63d0ee5671ec4f0a1926ad8875b9f11789b105.tar.gz
Qt-fe63d0ee5671ec4f0a1926ad8875b9f11789b105.tar.bz2
Add 'Writing New Components' docs, and document the connect() function.
The 'Writing QML Components' is mainly a restructuring of the 'Extending types from QML' page. It also documents the signal connect() function that was previously undocumented. Task-number: QTBUG-15718, QTBUG-15138
Diffstat (limited to 'examples/declarative/ui-components/tabwidget/TabWidget.qml')
-rw-r--r--examples/declarative/ui-components/tabwidget/TabWidget.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/ui-components/tabwidget/TabWidget.qml b/examples/declarative/ui-components/tabwidget/TabWidget.qml
index f066fd2..2a74c46 100644
--- a/examples/declarative/ui-components/tabwidget/TabWidget.qml
+++ b/examples/declarative/ui-components/tabwidget/TabWidget.qml
@@ -45,8 +45,8 @@ Item {
// Setting the default property to stack.children means any child items
// of the TabWidget are actually added to the 'stack' item's children.
- // See the "Extending Types from QML" documentation for details on default
- // properties.
+ // See the "Writing QML Components: Properties, Methods and Signals"
+ // documentation for details on default properties.
default property alias content: stack.children
property int current: 0