--- a/src/eric7/Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py Fri Dec 22 17:24:07 2023 +0100 +++ b/src/eric7/Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py Fri Dec 22 19:45:17 2023 +0100 @@ -27,7 +27,8 @@ """ Constructor - @param parent parent widget (QWidget) + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -186,7 +187,8 @@ """ Private slot called by a button of the button box clicked. - @param button button that was clicked (QAbstractButton) + @param button button that was clicked + @type QAbstractButton """ if button == self.bTest: self.on_bTest_clicked() @@ -232,9 +234,12 @@ """ Private method to generate the button code. - @param istring indentation string (string) - @param indString string used for indentation (space or tab) (string) - @return the button code (string) + @param istring indentation string + @type str + @param indString string used for indentation (space or tab) + @type str + @return the button code + @rtype str """ buttons = [] if self.abortCheck.isChecked(): @@ -291,9 +296,12 @@ """ Public method to get the source code. - @param indLevel indentation level (int) - @param indString string used for indentation (space or tab) (string) - @return generated code (string) + @param indLevel indentation level + @type int + @param indString string used for indentation (space or tab) + @type str + @return generated code + @rtype str """ # calculate our indentation level and the indentation string il = indLevel + 1