src/eric7/Plugins/VcsPlugins/vcsGit/GitCommandDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 10217
7888177e7463
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitCommandDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitCommandDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -28,9 +28,12 @@
         """
         Constructor
 
-        @param argvList history list of commandline arguments (list of strings)
-        @param ppath pathname of the project directory (string)
-        @param parent parent widget of this dialog (QWidget)
+        @param argvList history list of commandline arguments
+        @type list of str
+        @param ppath pathname of the project directory
+        @type str
+        @param parent parent widget of this dialog
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -61,7 +64,8 @@
         """
         Private method used to enable/disable the OK-button.
 
-        @param text ignored
+        @param text text of the combobox
+        @type str
         """
         self.okButton.setDisabled(self.commandCombo.currentText() == "")
 
@@ -69,6 +73,7 @@
         """
         Public method to retrieve the data entered into this dialog.
 
-        @return commandline parameters (string)
+        @return commandline parameters
+        @rtype str
         """
         return self.commandCombo.currentText()

eric ide

mercurial