diff options
Diffstat (limited to 'examples/declarative/clock/display.qml')
-rw-r--r-- | examples/declarative/clock/display.qml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/examples/declarative/clock/display.qml b/examples/declarative/clock/display.qml index 20e254d..927adfa 100644 --- a/examples/declarative/clock/display.qml +++ b/examples/declarative/clock/display.qml @@ -3,5 +3,12 @@ import Qt 4.6 Rectangle { width: childrenRect.width height: childrenRect.height - Clock { id: clock } + color: "#646464" + + Grid { + columns: 3 + Clock { city: "New York"; shift: -4 } + Clock { city: "London" } + Clock { city: "Brisbane"; shift: 10 } + } } |