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

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgCommitDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgCommitDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -31,10 +31,15 @@
         Constructor
 
         @param vcs reference to the vcs object
-        @param msg initial message (string)
-        @param mq flag indicating a queue commit (boolean)
-        @param merge flag indicating a merge commit (boolean)
-        @param parent parent widget (QWidget)
+        @type Hg
+        @param msg initial message
+        @type str
+        @param mq flag indicating a queue commit
+        @type bool
+        @param merge flag indicating a merge commit
+        @type bool
+        @param parent parent widget
+        @type QWidget
         """
         super().__init__(parent, Qt.WindowType.Window)
         self.setupUi(self)
@@ -57,7 +62,8 @@
         """
         Protected method called when the dialog is about to be shown.
 
-        @param evt the event (QShowEvent)
+        @param evt the event
+        @type QShowEvent
         """
         commitMessages = self.__vcs.vcsCommitMessages()
         self.recentComboBox.clear()
@@ -81,7 +87,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.Cancel):
             self.logEdit.clear()

eric ide

mercurial