ViewManager/ViewManager.py

changeset 3591
2f2a4a76dd22
parent 3547
c2a187c63209
child 3656
441956d8fce5
diff -r 5280e37405b8 -r 2f2a4a76dd22 ViewManager/ViewManager.py
--- a/ViewManager/ViewManager.py	Sat May 17 19:58:49 2014 +0200
+++ b/ViewManager/ViewManager.py	Sun May 18 14:13:09 2014 +0200
@@ -65,7 +65,7 @@
     
     def keyPressEvent(self, evt):
         """
-        Re-implemented to handle the press of the ESC key.
+        Protected method to handle the press of the ESC key.
         
         @param evt key event (QKeyPressEvent)
         """
@@ -76,7 +76,7 @@
     
     def focusInEvent(self, evt):
         """
-        Re-implemented to record the current editor widget.
+        Protected method to record the current editor widget.
         
         @param evt focus event (QFocusEvent)
         """
@@ -4278,7 +4278,7 @@
         
     def closeAllWindows(self):
         """
-        Private method to close all editor windows via file menu.
+        Public method to close all editor windows via file menu.
         """
         savedEditors = self.editors[:]
         for editor in savedEditors:
@@ -4572,7 +4572,7 @@
         
     def __unhighlight(self):
         """
-        Privat slot to switch of all highlights.
+        Private slot to switch of all highlights.
         """
         self.unhighlight()
         
@@ -6696,7 +6696,7 @@
     
     def insertSymbol(self, txt):
         """
-        Private slot to insert a symbol text into the active window.
+        Public slot to insert a symbol text into the active window.
         
         @param txt text to be inserted (string)
         """
@@ -6715,7 +6715,7 @@
     
     def insertNumber(self, txt):
         """
-        Private slot to insert a number text into the active window.
+        Public slot to insert a number text into the active window.
         
         @param txt text to be inserted (string)
         """

eric ide

mercurial