diff -r 643989a1e2bd -r e440aaf179ce src/eric7/Project/ProjectBrowser.py --- a/src/eric7/Project/ProjectBrowser.py Wed Dec 20 15:42:44 2023 +0100 +++ b/src/eric7/Project/ProjectBrowser.py Wed Dec 20 19:28:22 2023 +0100 @@ -98,7 +98,9 @@ Constructor @param project reference to the project object - @param parent parent widget (QWidget) + @type Project + @param parent parent widget + @type QWidget """ EricTabWidget.__init__(self, parent) self.project = project @@ -336,7 +338,8 @@ """ Private slot to handle the currentChanged(int) signal. - @param index index of the tab (integer) + @param index index of the tab + @type int """ if index > -1: browser = self.widget(index) @@ -422,8 +425,10 @@ """ Public slot to handle the editorLineChanged signal. - @param fn filename of the changed file (string) - @param lineno one based line number of the item (integer) + @param fn filename of the changed file + @type str + @param lineno one based line number of the item + @type int """ if ( Preferences.getProject("FollowEditor") @@ -467,7 +472,8 @@ """ Private slot to react upon clicks on the VCS indicator LED. - @param pos position of the click (QPoint) + @param pos position of the click + @type QPoint """ vcs = self.project.getVcs() if vcs: