diff -r e440aaf179ce -r 64157aeb0312 src/eric7/QScintilla/EditorOutline.py --- a/src/eric7/QScintilla/EditorOutline.py Wed Dec 20 19:28:22 2023 +0100 +++ b/src/eric7/QScintilla/EditorOutline.py Thu Dec 21 12:03:40 2023 +0100 @@ -200,7 +200,8 @@ Reimplemented to disable expanding/collapsing of items when double-clicking. Instead the double-clicked entry is opened. - @param mouseEvent the mouse event (QMouseEvent) + @param mouseEvent the mouse event + @type QMouseEvent """ index = self.indexAt(mouseEvent.position().toPoint()) if index.isValid(): @@ -413,7 +414,8 @@ """ Private slot to handle the selection of the goto menu. - @param act reference to the action (EricAction) + @param act reference to the action + @type EricAction """ lineno = act.data() self.__model.editor().gotoLine(lineno)