diff -r ba2929194c7b -r d70c2a05a494 ExtensionCorba/ProjectInterfacesBrowser.py --- a/ExtensionCorba/ProjectInterfacesBrowser.py Sat Dec 23 15:48:47 2023 +0100 +++ b/ExtensionCorba/ProjectInterfacesBrowser.py Sat Dec 23 19:43:44 2023 +0100 @@ -434,7 +434,8 @@ """ Protected slot to show the context menu. - @param coord the position of the mouse pointer (QPoint) + @param coord the position of the mouse pointer + @type QPoint """ if not self.project.isOpen(): return @@ -720,8 +721,10 @@ """ Private slot to handle the finished signal of the omniidl process. - @param exitCode exit code of the process (integer) - @param exitStatus exit status of the process (QProcess.ExitStatus) + @param exitCode exit code of the process + @type int + @param exitStatus exit status of the process + @type QProcess.ExitStatus """ pixmapSuffix = "dark" if ericApp().usesDarkPalette() else "light" pixmap = EricPixmapCache.getPixmap( @@ -762,10 +765,14 @@ """ Private method to compile a .idl file to python. - @param fn filename of the .idl file to be compiled (string) - @param noDialog flag indicating silent operations (boolean) - @param progress reference to the progress dialog (EricProgressDialog) - @return reference to the compile process (QProcess) + @param fn filename of the .idl file to be compiled + @type str + @param noDialog flag indicating silent operations + @type bool + @param progress reference to the progress dialog + @type EricProgressDialog + @return reference to the compile process + @rtype QProcess """ params = self.project.getProjectData(dataKey="IDLPARAMS")