src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 10069
435cc5875135
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -30,7 +30,9 @@
         Constructor
 
         @param vcs reference to the vcs object
-        @param parent parent widget (QWidget)
+        @type Subversion
+        @param parent parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -80,9 +82,12 @@
         """
         Private method to generate a properties item in the properties list.
 
-        @param path file/directory name the property applies to (string)
-        @param propName name of the property (string)
-        @param propValue value of the property (string)
+        @param path file/directory name the property applies to
+        @type str
+        @param propName name of the property
+        @type str
+        @param propValue value of the property
+        @type str
         """
         QTreeWidgetItem(self.propsList, [path, propName, propValue.strip()])
 
@@ -90,7 +95,8 @@
         """
         Protected slot implementing a close event handler.
 
-        @param e close event (QCloseEvent)
+        @param e close event
+        @type QCloseEvent
         """
         if (
             self.process is not None
@@ -106,8 +112,10 @@
         """
         Public slot to start the svn status command.
 
-        @param fn filename(s) (string or list of string)
+        @param fn filename(s)
+        @type str or list of str
         @param recursive flag indicating a recursive list is requested
+        @type bool
         """
         self.errorGroup.hide()
 
@@ -182,7 +190,8 @@
         """
         Private slot called by a button of the button box clicked.
 
-        @param button button that was clicked (QAbstractButton)
+        @param button button that was clicked
+        @type QAbstractButton
         """
         if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close):
             self.close()
@@ -203,8 +212,10 @@
         """
         Private slot connected to the finished signal.
 
-        @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
         """
         if self.lastPath is None:
             self.__generateItem("", "None", "")

eric ide

mercurial