QScintilla/MiniEditor.py

changeset 3591
2f2a4a76dd22
parent 3484
645c12de6b0c
child 3621
15f23ed3f216
--- a/QScintilla/MiniEditor.py	Sat May 17 19:58:49 2014 +0200
+++ b/QScintilla/MiniEditor.py	Sun May 18 14:13:09 2014 +0200
@@ -80,7 +80,7 @@
     
     def focusOutEvent(self, event):
         """
-        Public method called when the editor loses focus.
+        Protected method called when the editor loses focus.
         
         @param event the event object (QFocusEvent)
         """
@@ -191,7 +191,7 @@
 
     def closeEvent(self, event):
         """
-        Public method to handle the close event.
+        Protected method to handle the close event.
         
         @param event close event (QCloseEvent)
         """
@@ -2272,14 +2272,14 @@
     
     def __undo(self):
         """
-        Public method to undo the last recorded change.
+        Private method to undo the last recorded change.
         """
         self.__textEdit.undo()
         self.__checkActions()
     
     def __redo(self):
         """
-        Public method to redo the last recorded change.
+        Private method to redo the last recorded change.
         """
         self.__textEdit.redo()
         self.__checkActions()

eric ide

mercurial