RefactoringRope/RefactoringServer.py

branch
server_client_variant
changeset 217
874115c79ca7
parent 212
f05681349336
child 245
75a35a927952
--- a/RefactoringRope/RefactoringServer.py	Sun Oct 08 19:11:45 2017 +0200
+++ b/RefactoringRope/RefactoringServer.py	Sat Oct 14 19:31:11 2017 +0200
@@ -883,7 +883,7 @@
         Note: rope seems to convert all EOL styles to just \n.
         
         @param editor reference to the editor
-        @type QScintilla.Editor
+        @type QScintilla.Editor.Editor
         @param line line for the offset
         @type int
         @param index index into line for the offset
@@ -1754,7 +1754,7 @@
         Note: This is executed upon a mouse click sequence.
         
         @param editor reference to the calling editor
-        @type QScintilla.Editor
+        @type QScintilla.Editor.Editor
         """
         if self.__projectopen:
             filename = editor.getFileName()
@@ -2125,7 +2125,7 @@
         Public method to check, if an editor has unsaved changes.
         
         @param editor reference to the editor to be checked
-        @type QScintilla.Editor
+        @type QScintilla.Editor.Editor
         @return flag indicating, that the editor doesn't contain
             unsaved edits
         @rtype bool
@@ -2264,9 +2264,8 @@
         Public method to connect an editor.
         
         @param editor reference to the editor
-        @type QScintilla.Editor
+        @type QScintilla.Editor.Editor
         """
-        
         if self.__plugin.getPreferences("MouseClickEnabled"):
             self.__disconnectMouseClickHandler(editor)
             self.__connectMouseClickHandler(editor)
@@ -2276,7 +2275,7 @@
         Public method to disconnect an editor.
         
         @param editor reference to the editor
-        @type QScintilla.Editor
+        @type QScintilla.Editor.Editor
         """
         self.__disconnectMouseClickHandler(editor)
     
@@ -2285,7 +2284,7 @@
         Private method to connect the mouse click handler to an editor.
         
         @param editor reference to the editor
-        @type QScintilla.Editor
+        @type QScintilla.Editor.Editor
         """
         if self.__plugin.getPreferences("MouseClickGotoButton"):
             editor.setMouseClickHandler(
@@ -2300,6 +2299,6 @@
         Private method to disconnect the mouse click handler from an editor.
         
         @param editor reference to the editor
-        @type QScintilla.Editor
+        @type QScintilla.Editor.Editor
         """
         editor.removeMouseClickHandlers("rope")

eric ide

mercurial