ViewManager/ViewManager.py

changeset 3062
9de9373da5bb
parent 3039
8dd0165d805d
child 3069
8a9579bbf583
--- a/ViewManager/ViewManager.py	Sat Nov 02 11:55:46 2013 +0100
+++ b/ViewManager/ViewManager.py	Wed Nov 06 19:23:06 2013 +0100
@@ -5731,7 +5731,7 @@
         else:
             self.syntaxErrorGotoAct.setEnabled(False)
             self.syntaxErrorClearAct.setEnabled(False)
-        if editor.hasFlakesWarnings():
+        if editor.hasWarnings():
             self.warningsNextAct.setEnabled(True)
             self.warningsPreviousAct.setEnabled(True)
             self.warningsClearAct.setEnabled(True)
@@ -5745,20 +5745,20 @@
         """
         Private method to handle the next warning action.
         """
-        self.activeWindow().nextFlakesWarning()
+        self.activeWindow().nextWarning()
         
     def __previousWarning(self):
         """
         Private method to handle the previous warning action.
         """
-        self.activeWindow().previousFlakesWarning()
+        self.activeWindow().previousWarning()
         
     def __clearAllWarnings(self):
         """
         Private method to handle the clear all warnings action.
         """
         for editor in self.editors:
-            editor.clearFlakesWarnings()
+            editor.clearWarnings()
         
     def __nextUncovered(self):
         """
@@ -6139,7 +6139,7 @@
                 self.syntaxErrorGotoAct.setEnabled(False)
                 self.syntaxErrorClearAct.setEnabled(False)
             
-            if editor.hasFlakesWarnings():
+            if editor.hasWarnings():
                 self.warningsNextAct.setEnabled(True)
                 self.warningsPreviousAct.setEnabled(True)
                 self.warningsClearAct.setEnabled(True)

eric ide

mercurial