~ci-train-bot/ubuntu-system-settings/ubuntu-system-settings-ubuntu-zesty-2129

« back to all changes in this revision

Viewing changes to plugins/phone/SingleSim.qml

  • Committer: Bileto Bot
  • Author(s): Jonas G. Drange
  • Date: 2017-01-12 12:48:46 UTC
  • mfrom: (1741.1.28 apl)
  • Revision ID: ci-train-bot@canonical.com-20170112124846-0rsokgs0jy7j9rqv
migrates uss to apl

Approved by: Ken VanDine, system-apps-ci-bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
        objectName: "callWait"
34
34
        text: i18n.tr("Call waiting")
35
35
        progression: true
36
 
        onClicked: pageStack.push(Qt.resolvedUrl("CallWaiting.qml"), {sim: sim})
 
36
        onClicked: pageStack.addPageToNextColumn(root,
 
37
            Qt.resolvedUrl("CallWaiting.qml"), {sim: sim})
37
38
    }
38
39
 
39
40
    ListItem.SingleValue {
42
43
        showDivider: false
43
44
        progression: true
44
45
        value: sim.getCallForwardingSummary()
45
 
        onClicked: pageStack.push(Qt.resolvedUrl("CallForwarding.qml"), {sim: sim})
 
46
        onClicked: pageStack.addPageToNextColumn(root,
 
47
            Qt.resolvedUrl("CallForwarding.qml"), {sim: sim})
46
48
    }
47
49
 
48
50
    ListItem.Divider {}
65
67
            }
66
68
            return sim.simMng.present && nums;
67
69
        }
68
 
        onClicked: pageStack.push(Qt.resolvedUrl("Services.qml"),
69
 
                                  {carrierString: carrierString, sim: sim.simMng})
 
70
        onClicked: pageStack.addPageToNextColumn(root,
 
71
            Qt.resolvedUrl("Services.qml"),
 
72
            {carrierString: carrierString, sim: sim.simMng})
70
73
    }
71
74
}