~rpadovani/ubuntu-calculator-app/fromDateToString

« back to all changes in this revision

Viewing changes to ubuntu-calculator-app.qml

  • Committer: Riccardo Ferrazzo
  • Date: 2013-03-23 08:44:24 UTC
  • mfrom: (38 trunk)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: f.riccardo87@gmail.com-20130323084424-tbr2fi50od7zg65y
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
        id: storage
23
23
    }
24
24
 
25
 
    Tabs {
26
 
        id: tabs
27
 
        anchors.fill: parent
28
 
        
29
 
        // First tab begins here
30
 
        Tab {
31
 
            objectName: "Tab1"
32
 
            
33
 
            title: i18n.tr("Calculator")
34
 
            
35
 
            // Tab content begins here
36
 
            page: SimplePage{} //ScientificPage{} for a better calculator
37
 
        }
 
25
    SimplePage {
38
26
    }
39
27
}