1234567891011121314151617 |
- // import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
- import QtQuick 1.1
- import "../parts/"
- import "../js/core.js" as Core
- Rectangle{
- width: parent.width
- height: parent.height
- visible:false
- Rectangle{
- anchors.fill: parent
- color: "#e1ecef"
- }
- }
|