src/eric7/Project/ProjectResourcesBrowser.py

branch
eric7
changeset 10430
e440aaf179ce
parent 10398
ef1ea18994d5
child 10439
21c28b0f9e41
diff -r 643989a1e2bd -r e440aaf179ce src/eric7/Project/ProjectResourcesBrowser.py
--- a/src/eric7/Project/ProjectResourcesBrowser.py	Wed Dec 20 15:42:44 2023 +0100
+++ b/src/eric7/Project/ProjectResourcesBrowser.py	Wed Dec 20 19:28:22 2023 +0100
@@ -411,7 +411,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
@@ -656,8 +657,10 @@
         """
         Private slot to handle the finished signal of the compile 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)
@@ -708,9 +711,13 @@
         Private method to compile a .qrc file to a .py 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 = []
@@ -876,9 +883,12 @@
         Private method to check, if any file referenced in a resource
         file is newer than a given time.
 
-        @param filename filename of the resource file (string)
+        @param filename filename of the resource file
+        @type str
         @param mtime modification time to check against
-        @return flag indicating some file is newer (boolean)
+        @type int
+        @return flag indicating some file is newer
+        @rtype boolean)
         """
         try:
             with open(filename, "r", encoding="utf-8") as f:

eric ide

mercurial