QScintilla/Editor.py

changeset 2163
2b02339f52bf
parent 2162
4627e6ea7b6b
child 2164
d67b14a3f884
--- a/QScintilla/Editor.py	Sat Oct 27 20:10:59 2012 +0200
+++ b/QScintilla/Editor.py	Sun Oct 28 17:41:29 2012 +0100
@@ -772,7 +772,7 @@
             menu.addAction(self.trUtf8('Code coverage...'), self.__showCodeCoverage)
         self.coverageShowAnnotationMenuAct = \
             menu.addAction(self.trUtf8('Show code coverage annotations'),
-                self.__codeCoverageShowAnnotations)
+                self.codeCoverageShowAnnotations)
         self.coverageHideAnnotationMenuAct = \
             menu.addAction(self.trUtf8('Hide code coverage annotations'),
                 self.__codeCoverageHideAnnotations)
@@ -4818,9 +4818,9 @@
             self.codecoverage.show()
             self.codecoverage.start(fn, self.fileName)
         
-    def __codeCoverageShowAnnotations(self):
-        """
-        Private method to handle the show code coverage annotations context menu action.
+    def codeCoverageShowAnnotations(self):
+        """
+        Public method to handle the show code coverage annotations context menu action.
         """
         fn = self.__getCodeCoverageFile()
         if fn:

eric ide

mercurial