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

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 10373
093dcebe5ecb
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitPushDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitPushDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -28,8 +28,11 @@
         Constructor
 
         @param vcs reference to the git object
-        @param repodir directory name of the local repository (string)
-        @param parent reference to the parent widget (QWidget)
+        @type Git
+        @param repodir directory name of the local repository
+        @type str
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -86,7 +89,8 @@
         """
         Private slot to handle changes of the selected repository.
 
-        @param txt current text of the combo box (string)
+        @param txt current text of the combo box
+        @type str
         """
         self.remoteEdit.setText(self.__repos[txt])
 
@@ -111,8 +115,10 @@
         """
         Private slot handling changes of a branch item.
 
-        @param item reference to the changed item (QTreeWidgetItem)
-        @param column changed column (integer)
+        @param item reference to the changed item
+        @type QTreeWidgetItem
+        @param column changed column
+        @type int
         """
         if column == GitPushDialog.PushColumn:
             # step 1: set the item's remote branch, if it is empty
@@ -152,7 +158,8 @@
         """
         Private slot to select/deselect all branch items.
 
-        @param state check state of the check box (Qt.CheckState)
+        @param state check state of the check box
+        @type Qt.CheckState
         """
         if state != Qt.CheckState.PartiallyChecked:
             for row in range(self.branchesTree.topLevelItemCount()):

eric ide

mercurial