Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py

changeset 4506
57666e501a42
parent 4423
14f3ca3dcef6
child 4511
b5e4e7efa904
--- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py	Fri Oct 23 19:44:22 2015 +0200
+++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.py	Sat Oct 24 20:36:26 2015 +0200
@@ -50,7 +50,7 @@
             else:
                 continue
             itm = QTreeWidgetItem(self.codeTable, [code, message])
-            if code.startswith(("W", "C")):
+            if code.startswith(("W", "C", "M")):
                 itm.setIcon(0, UI.PixmapCache.getIcon("warning.png"))
             elif code.startswith("E"):
                 itm.setIcon(0, UI.PixmapCache.getIcon("syntaxError.png"))

eric ide

mercurial