Changeset 65352 in vbox
- Timestamp:
- Jan 17, 2017 4:01:19 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112940
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/webui/wuicontentbase.py
r65351 r65352 737 737 """ 738 738 739 def __init__(self, aoEntries, iPage, cItemsPerPage, tsEffectiveDate, sTitle, sId = None, fnDPrint = None,740 oDisp = None, aiSelectedSortColumns = None): # pylint: disable=too-many-arguments739 def __init__(self, aoEntries, iPage, cItemsPerPage, tsEffectiveDate, sTitle, # pylint: disable=too-many-arguments 740 sId = None, fnDPrint = None, oDisp = None, aiSelectedSortColumns = None): 741 741 WuiContentBase.__init__(self, fnDPrint = fnDPrint, oDisp = oDisp); 742 742 self._aoEntries = aoEntries; ## @todo should replace this with a Logic object and define methods for querying. … … 1037 1037 """ 1038 1038 1039 def __init__(self, aoEntries, iPage, cItemsPerPage, tsEffectiveDate, sTitle, sId = None, fnDPrint = None,1040 oDisp = None, aiSelectedSortColumns = None): # pylint: disable=too-many-arguments1039 def __init__(self, aoEntries, iPage, cItemsPerPage, tsEffectiveDate, sTitle, # pylint: disable=too-many-arguments 1040 sId = None, fnDPrint = None, oDisp = None, aiSelectedSortColumns = None): 1041 1041 WuiListContentBase.__init__(self, aoEntries, iPage, cItemsPerPage, tsEffectiveDate, sTitle, sId = sId, 1042 1042 fnDPrint = fnDPrint, oDisp = oDisp, aiSelectedSortColumns = aiSelectedSortColumns);
Note:
See TracChangeset
for help on using the changeset viewer.