forked from qt-creator/qt-creator
Update screen shots Change-Id: I09e3b3cd496c338ce390c3a82bd7468b7be0b97f Reviewed-by: Thomas Hartmann <Thomas.Hartmann@nokia.com>
13 lines
207 B
QML
13 lines
207 B
QML
Item {
|
|
//! [properties and signal definitions]
|
|
property string text: ""
|
|
property int fontSize: 10
|
|
|
|
signal clicked
|
|
|
|
width: 60
|
|
height: 40
|
|
|
|
//! [properties and signal definitions]
|
|
}
|