QScintilla/QsciScintillaCompat.py

changeset 3591
2f2a4a76dd22
parent 3515
1b8381afe38f
child 3656
441956d8fce5
child 3934
8e2b5bdd6bf3
--- a/QScintilla/QsciScintillaCompat.py	Sat May 17 19:58:49 2014 +0200
+++ b/QScintilla/QsciScintillaCompat.py	Sun May 18 14:13:09 2014 +0200
@@ -1191,14 +1191,14 @@
     
     def clearKeys(self):
         """
-        Protected method to clear the key commands.
+        Public method to clear the key commands.
         """
         # call into the QsciCommandSet
         self.standardCommands().clearKeys()
         
     def clearAlternateKeys(self):
         """
-        Protected method to clear the alternate key commands.
+        Public method to clear the alternate key commands.
         """
         # call into the QsciCommandSet
         self.standardCommands().clearAlternateKeys()
@@ -1209,7 +1209,7 @@
     
     def focusOutEvent(self, event):
         """
-        Public method called when the editor loses focus.
+        Protected method called when the editor loses focus.
         
         @param event event object (QFocusEvent)
         """
@@ -1233,7 +1233,7 @@
     
     def event(self, evt):
         """
-        Protected method to handle events.
+        Public method to handle events.
         
         Note: We are not interested in the standard QsciScintilla event
         handling because we do it our self.
@@ -1259,7 +1259,7 @@
         
         def inputMethodQuery(self, query):
             """
-            Protected method to cope with a glitch in some Qscintilla versions
+            Public method to cope with a glitch in some Qscintilla versions
             handling input events.
             
             Note: This simply disables the Qscintilla behavior.

eric ide

mercurial