Changeset 65423 in vbox for trunk/src/VBox/ValidationKit/testmanager/core/testbox.py
- Timestamp:
- Jan 24, 2017 2:40:08 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/testbox.py
r65350 r65423 683 683 kiSortColumn_iTestBoxScriptRev = 11; 684 684 kiSortColumn_iPythonHexVersion = 12; 685 kcMaxSortColumns = 13; 685 kiSortColumn_enmPendingCmd = 13; 686 kiSortColumn_fEnabled = 14; 687 kiSortColumn_enmState = 15; 688 kiSortColumn_tsUpdated = 16; 689 kcMaxSortColumns = 17; 686 690 kdSortColumnMap = { 687 691 0: 'TestBoxesWithStrings.sName', … … 710 714 kiSortColumn_iPythonHexVersion: 'TestBoxesWithStrings.iPythonHexVersion', 711 715 -kiSortColumn_iPythonHexVersion: 'TestBoxesWithStrings.iPythonHexVersion DESC', 716 kiSortColumn_enmPendingCmd: 'TestBoxesWithStrings.enmPendingCmd', 717 -kiSortColumn_enmPendingCmd: 'TestBoxesWithStrings.enmPendingCmd DESC', 718 kiSortColumn_fEnabled: 'TestBoxesWithStrings.fEnabled', 719 -kiSortColumn_fEnabled: 'TestBoxesWithStrings.fEnabled DESC', 720 kiSortColumn_enmState: 'TestBoxStatuses.enmState', 721 -kiSortColumn_enmState: 'TestBoxStatuses.enmState DESC', 722 kiSortColumn_tsUpdated: 'TestBoxStatuses.tsUpdated', 723 -kiSortColumn_tsUpdated: 'TestBoxStatuses.tsUpdated DESC', 712 724 }; 713 725
Note:
See TracChangeset
for help on using the changeset viewer.