src/eric7/QScintilla/SortOptionsDialog.py

branch
eric7
changeset 10431
64157aeb0312
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r e440aaf179ce -r 64157aeb0312 src/eric7/QScintilla/SortOptionsDialog.py
--- a/src/eric7/QScintilla/SortOptionsDialog.py	Wed Dec 20 19:28:22 2023 +0100
+++ b/src/eric7/QScintilla/SortOptionsDialog.py	Thu Dec 21 12:03:40 2023 +0100
@@ -21,7 +21,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)
@@ -34,7 +35,8 @@
         Public method to get the selected options.
 
         @return tuple of three flags indicating ascending order, alphanumeric
-            sort and case sensitivity (tuple of three boolean)
+            sort and case sensitivity
+        @rtype tuple of (bool, bool, bool)
         """
         return (
             self.ascendingButton.isChecked(),

eric ide

mercurial