~laney/ubuntu-system-settings/plugin-invocation-getopt-long

« back to all changes in this revision

Viewing changes to plugins/sound/PageComponent.qml

  • Committer: Tarmac
  • Author(s): Sebastien Bacher
  • Date: 2013-07-19 14:52:35 UTC
  • mfrom: (165.1.1 ubuntu-system-settings)
  • Revision ID: tarmac-20130719145235-ut0quzh6y06358hu
settings: share the "list item with checkbox on the left" widget
since it's going to be used in different panels. We need this until
https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1197058 is fixed in the
toolkit (or the design need to change to put those on the right...).

Approved by Iain Lane, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
                onClicked: pageStack.push(Qt.resolvedUrl("SoundsList.qml"), {title: i18n.tr("Ringtone")})
57
57
            }
58
58
 
59
 
            SoundCheckEntry {
 
59
            SettingsCheckEntry {
60
60
                checkStatus: false
61
61
                textEntry: i18n.tr("Vibrate when ringing")
62
62
            }
63
63
 
64
 
            SoundCheckEntry {
 
64
            SettingsCheckEntry {
65
65
                checkStatus: true
66
66
                textEntry: i18n.tr("Vibrate in silent mode")
67
67
            }
77
77
                onClicked: pageStack.push(Qt.resolvedUrl("SoundsList.qml"), {title: i18n.tr("Alert sound")})
78
78
            }
79
79
 
80
 
            SoundCheckEntry {
 
80
            SettingsCheckEntry {
81
81
                checkStatus: true
82
82
                textEntry: i18n.tr("Vibrate with alert sound")
83
83
            }
84
84
 
85
 
            SoundCheckEntry {
 
85
            SettingsCheckEntry {
86
86
                checkStatus: true
87
87
                textEntry: i18n.tr("Vibrate in silent mode")
88
88
            }