--- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py Fri Mar 17 19:45:49 2017 +0100 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py Fri Mar 17 19:48:54 2017 +0100 @@ -62,6 +62,7 @@ if code in codeList: itm.setSelected(True) codeList.remove(code) + # TODO: change this to checkable items self.codeTable.resizeColumnToContents(0) self.codeTable.resizeColumnToContents(1) self.codeTable.header().setStretchLastSection(True) @@ -76,6 +77,7 @@ """ selectedCodes = [] + # TODO: change this to checkable items for itm in self.codeTable.selectedItems(): selectedCodes.append(itm.text(0))