diff -r ef0373b55136 -r 758a864f9613 examples/declarative/ui-components/dialcontrol/dialcontrol.qml --- a/examples/declarative/ui-components/dialcontrol/dialcontrol.qml Fri Sep 17 08:34:18 2010 +0300 +++ b/examples/declarative/ui-components/dialcontrol/dialcontrol.qml Mon Oct 04 01:19:32 2010 +0300 @@ -38,8 +38,10 @@ ** ****************************************************************************/ +//! [imports] import Qt 4.7 import "content" +//! [imports] //! [0] Rectangle { @@ -86,5 +88,10 @@ } } } + QuitButton { + anchors.right: parent.right + anchors.top: parent.top + anchors.margins: 10 + } } -//! [0] \ No newline at end of file +//! [0]