--- a/eric6/Graphics/UMLSceneSizeDialog.py Tue May 04 19:30:25 2021 +0200 +++ b/eric6/Graphics/UMLSceneSizeDialog.py Tue May 04 20:03:40 2021 +0200 @@ -20,12 +20,18 @@ """ Constructor - @param w current width of scene (integer) - @param h current height of scene (integer) - @param minW minimum width allowed (integer) - @param minH minimum height allowed (integer) - @param parent parent widget of this dialog (QWidget) - @param name name of this widget (string) + @param w current width of scene + @type int + @param h current height of scene + @type int + @param minW minimum width allowed + @type int + @param minH minimum height allowed + @type int + @param parent parent widget of this dialog + @type QWidget + @param name name of this widget + @type str """ super().__init__(parent) if name: @@ -47,6 +53,6 @@ Public method to retrieve the entered data. @return tuple giving the selected width and height - (integer, integer) + @rtype tuple of (int, int) """ return (self.widthSpinBox.value(), self.heightSpinBox.value())