diff -r 3733e2b23cf7 -r a071d4065202 src/eric7/IconEditor/IconSizeDialog.py --- a/src/eric7/IconEditor/IconSizeDialog.py Wed Dec 20 11:06:38 2023 +0100 +++ b/src/eric7/IconEditor/IconSizeDialog.py Wed Dec 20 14:58:58 2023 +0100 @@ -21,9 +21,12 @@ """ Constructor - @param width width to be set (integer) - @param height height to be set (integer) - @param parent reference to the parent widget (QWidget) + @param width width to be set + @type int + @param height height to be set + @type int + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -40,6 +43,7 @@ """ Public method to get the entered data. - @return tuple with width and height (tuple of two integers) + @return tuple with width and height + @rtype tuple of (int, int) """ return self.widthSpin.value(), self.heightSpin.value()