--- a/src/eric7/QScintilla/ZoomDialog.py Wed Dec 20 19:28:22 2023 +0100 +++ b/src/eric7/QScintilla/ZoomDialog.py Thu Dec 21 12:03:40 2023 +0100 @@ -22,9 +22,13 @@ Constructor @param zoom zoom factor to show in the spinbox - @param parent parent widget of this dialog (QWidget) - @param name name of this dialog (string) - @param modal modal dialog state (boolean) + @type int + @param parent parent widget of this dialog + @type QWidget + @param name name of this dialog + @type str + @param modal modal dialog state + @type bool """ super().__init__(parent) if name: @@ -42,6 +46,7 @@ """ Public method to retrieve the zoom size. - @return zoom size (int) + @return zoom size + @rtype int """ return self.zoomSpinBox.value()