--- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py Wed Sep 02 18:46:11 2015 +0200 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py Wed Sep 02 20:16:28 2015 +0200 @@ -50,7 +50,7 @@ else: continue itm = QTreeWidgetItem(self.codeTable, [code, message]) - if code.startswith("W"): + if code.startswith(("W", "C")): itm.setIcon(0, UI.PixmapCache.getIcon("warning.png")) elif code.startswith("E"): itm.setIcon(0, UI.PixmapCache.getIcon("syntaxError.png"))