Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py

changeset 5625
b75a6da67559
parent 5389
9b1c800daff3
child 5636
709a306baa81
--- 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))
         

eric ide

mercurial