src/eric7/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardRepeatDialog.py

branch
eric7
changeset 10437
2f70ca07f0af
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r f6881d10e995 -r 2f70ca07f0af src/eric7/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardRepeatDialog.py
--- a/src/eric7/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardRepeatDialog.py	Fri Dec 22 17:24:07 2023 +0100
+++ b/src/eric7/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardRepeatDialog.py	Fri Dec 22 19:45:17 2023 +0100
@@ -26,7 +26,8 @@
         """
         Constructor
 
-        @param parent reference to the parent widget (QWidget)
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -42,7 +43,8 @@
         """
         Private slot to handle the lowerSpin valueChanged signal.
 
-        @param value value of the spinbox (integer)
+        @param value value of the spinbox
+        @type int
         """
         if self.upperSpin.value() < value:
             self.upperSpin.setValue(value)
@@ -52,7 +54,8 @@
         """
         Private slot to handle the upperSpin valueChanged signal.
 
-        @param value value of the spinbox (integer)
+        @param value value of the spinbox
+        @type int
         """
         if self.lowerSpin.value() > value:
             self.lowerSpin.setValue(value)
@@ -61,7 +64,8 @@
         """
         Public method to retrieve the dialog's result.
 
-        @return ready formatted repeat string (string)
+        @return ready formatted repeat string
+        @rtype str
         """
         if self.possessiveButton.isChecked():
             greedy = "+"

eric ide

mercurial