~andrew-haigh-b/cdts/fix-progress-bar

« back to all changes in this revision

Viewing changes to plainbox-gui/gui-ihv/qml/outline/TestSelectionListView.qml

  • Committer: Tarmac
  • Author(s): Andrew Haigh
  • Date: 2013-08-02 15:47:54 UTC
  • mfrom: (2243.1.1 bug1205249)
  • Revision ID: tarmac-20130802154754-0tzot82lbexte3bx
"[r=roadmr][bug=1205249][author=andrew-haigh-b] automatic merge by tarmac"

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
 
95
95
            // select/deselect all items in the list
96
96
            function selectAll(sel){
 
97
                // show the warning if sel is false
 
98
                if(!sel) {
 
99
                    showWarning(groupedList);
 
100
                }
 
101
 
97
102
                for (var i = testListModel.count - 1; i >=0; i--)
98
103
                    testListModel.setProperty(i, "check", sel);
99
104