--- a/PluginRefactoringRope.py Sun Oct 08 19:11:45 2017 +0200 +++ b/PluginRefactoringRope.py Sat Oct 14 19:31:11 2017 +0200 @@ -294,7 +294,7 @@ Private slot called, when a new editor was opened. @param editor reference to the new editor - @type QScintilla.Editor + @type QScintilla.Editor.Editor """ self.__connectEditor(editor) @@ -306,7 +306,7 @@ Private slot called, when an editor was closed. @param editor reference to the editor - @type QScintilla.Editor + @type QScintilla.Editor.Editor """ if editor in self.__editors: editor.languageChanged.disconnect(self.__editorLanguageChanged) @@ -330,7 +330,7 @@ Private method to connect an editor. @param editor reference to the editor - @type QScintilla.Editor + @type QScintilla.Editor.Editor """ editor.editorAboutToBeSaved.connect(self.__editorAboutToBeSaved) editor.editorSaved.connect(self.__editorSaved) @@ -343,7 +343,7 @@ Private method to disconnect an editor. @param editor reference to the editor - @type QScintilla.Editor + @type QScintilla.Editor.Editor """ try: editor.editorAboutToBeSaved.disconnect(self.__editorAboutToBeSaved)