src/eric7/Tools/TrayStarter.py

branch
eric7
changeset 10431
64157aeb0312
parent 10106
d61075b70ab3
child 10439
21c28b0f9e41
diff -r e440aaf179ce -r 64157aeb0312 src/eric7/Tools/TrayStarter.py
--- a/src/eric7/Tools/TrayStarter.py	Wed Dec 20 19:28:22 2023 +0100
+++ b/src/eric7/Tools/TrayStarter.py	Thu Dec 21 12:03:40 2023 +0100
@@ -277,7 +277,7 @@
         Private slot to handle the activated signal.
 
         @param reason reason code of the signal
-            (QSystemTrayIcon.ActivationReason)
+        @type QSystemTrayIcon.ActivationReason
         """
         if reason in (
             QSystemTrayIcon.ActivationReason.Context,
@@ -306,8 +306,10 @@
         """
         Private method to start an eric application.
 
-        @param applName name of the eric application script (string)
+        @param applName name of the eric application script
+        @type str
         @param *applArgs variable list of application arguments
+        @type list of str
         """
         proc = QProcess()
         applPath = os.path.join(os.path.dirname(__file__), "..", applName)
@@ -545,7 +547,8 @@
         Private method to open a project or file from the list of recently
         opened projects or files.
 
-        @param act reference to the action that triggered (QAction)
+        @param act reference to the action that triggered
+        @type QAction
         """
         filename = act.data()
         if filename:

eric ide

mercurial