src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnChangeListsDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 10373
093dcebe5ecb
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnChangeListsDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnChangeListsDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -31,7 +31,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)
@@ -55,8 +57,10 @@
         """
         Private slot to handle the selection of a new item.
 
-        @param current current item (QListWidgetItem)
-        @param previous previous current item (QListWidgetItem)
+        @param current current item
+        @type QListWidgetItem
+        @param previous previous current item
+        @type QListWidgetItem
         """
         self.filesList.clear()
         if current is not None:
@@ -68,7 +72,8 @@
         """
         Public slot to populate the data.
 
-        @param path directory name to show change lists for (string)
+        @param path directory name to show change lists for
+        @type str
         """
         self.changeListsDict = {}
         self.cancelled = False
@@ -104,7 +109,7 @@
         self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setDefault(True)
 
         if len(self.changeListsDict) == 0:
-            self.changeLists.addItem(self.tr("No changelists found"))
+            self.changeLists.addItem(self.tr("No change lists found"))
             self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setFocus(
                 Qt.FocusReason.OtherFocusReason
             )
@@ -116,7 +121,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()

eric ide

mercurial