Added the forgotten icon to the PEP-8 statistics dialog.

Fri, 13 Sep 2013 18:38:34 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 13 Sep 2013 18:38:34 +0200
changeset 2909
c3fb85fe41f9
parent 2908
c6e9a57eb44b
child 2910
cdc56e9d9f12

Added the forgotten icon to the PEP-8 statistics dialog.

Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py file | annotate | diff | comparison | revisions
--- a/Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py	Wed Sep 11 22:31:09 2013 +0200
+++ b/Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py	Fri Sep 13 18:38:34 2013 +0200
@@ -87,6 +87,8 @@
             itm.setIcon(1, UI.PixmapCache.getIcon("warning.png"))
         elif code.startswith("E"):
             itm.setIcon(1, UI.PixmapCache.getIcon("syntaxError.png"))
+        elif code.startswith("N"):
+            itm.setIcon(1, UI.PixmapCache.getIcon("namingError.png"))
         
         itm.setTextAlignment(0, Qt.AlignRight)
         itm.setTextAlignment(1, Qt.AlignHCenter)

eric ide

mercurial