src/eric7/Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py
--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -25,7 +25,9 @@
         Constructor
 
         @param vcs reference to the vcs object
-        @param parent parent widget (QWidget)
+        @type Hg
+        @param parent parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -43,9 +45,11 @@
         """
         Public slot to start the hg summary command.
 
-        @param mq flag indicating to show the queue status as well (boolean)
+        @param mq flag indicating to show the queue status as well
+        @type bool
         @param largefiles flag indicating to show the largefiles status as
-            well (boolean)
+            well
+        @type bool
         """
         self.errorGroup.hide()
         self.refreshButton.setEnabled(False)
@@ -75,7 +79,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()
@@ -100,7 +105,8 @@
         """
         Private slot to show some error.
 
-        @param out error to be shown (string)
+        @param out error to be shown
+        @type str
         """
         self.errorGroup.show()
         self.errors.insertPlainText(out)
@@ -110,7 +116,8 @@
         """
         Private method to process the output into nice readable text.
 
-        @param output output from the summary command (string)
+        @param output output from the summary command
+        @type str
         """
         infoDict = {}
 

eric ide

mercurial