--- a/src/eric7/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py Fri Dec 22 17:24:07 2023 +0100 +++ b/src/eric7/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py Fri Dec 22 19:45:17 2023 +0100 @@ -39,7 +39,8 @@ """ Constructor - @param parent parent widget (QWidget) + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -64,7 +65,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() @@ -95,7 +97,8 @@ """ Private slot to handle the textChanged signal of eVariable. - @param text the new text (string) + @param text the new text + @type str """ if not text: self.bTest.setEnabled(True) @@ -132,9 +135,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