diff -r 643989a1e2bd -r e440aaf179ce src/eric7/Project/ProjectFormsBrowser.py --- a/src/eric7/Project/ProjectFormsBrowser.py Wed Dec 20 15:42:44 2023 +0100 +++ b/src/eric7/Project/ProjectFormsBrowser.py Wed Dec 20 19:28:22 2023 +0100 @@ -453,7 +453,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 @@ -640,7 +641,8 @@ Private slot to handle the New Form menu action for Qt-related projects. - @param path full directory path for the new form file (string) + @param path full directory path for the new form file + @type str """ selectedForm, ok = QInputDialog.getItem( None, @@ -809,8 +811,10 @@ """ Private slot to handle the finished signal of the pyuic/rbuic 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 """ self.compileRunning = False ericApp().getObject("ViewManager").enableEditorsCheckFocusIn(True) @@ -863,9 +867,13 @@ Private method to compile a .ui file to a .py/.rb file. @param fn filename of the .ui file to be compiled + @type str @param noDialog flag indicating silent operations + @type bool @param progress reference to the progress dialog - @return reference to the compile process (QProcess) + @type QProgressDialog + @return reference to the compile process + @rtype QProcess """ self.compileProc = QProcess() args = []