--- a/Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py Fri Oct 18 23:00:41 2013 +0200 @@ -134,7 +134,7 @@ self.eMessage.setEnabled(not self.rAboutQt.isChecked()) @pyqtSlot(bool) - def on_rInformation_toggled(self, checked): + def on_rInformation_toggled(self, on): """ Private slot to handle the toggled signal of the rInformation radio button. @@ -144,7 +144,7 @@ self.__enabledGroups() @pyqtSlot(bool) - def on_rQuestion_toggled(self, checked): + def on_rQuestion_toggled(self, on): """ Private slot to handle the toggled signal of the rQuestion radio button. @@ -154,7 +154,7 @@ self.__enabledGroups() @pyqtSlot(bool) - def on_rWarning_toggled(self, checked): + def on_rWarning_toggled(self, on): """ Private slot to handle the toggled signal of the rWarning radio button. @@ -164,7 +164,7 @@ self.__enabledGroups() @pyqtSlot(bool) - def on_rCritical_toggled(self, checked): + def on_rCritical_toggled(self, on): """ Private slot to handle the toggled signal of the rCritical radio button. @@ -174,7 +174,7 @@ self.__enabledGroups() @pyqtSlot(bool) - def on_rYesNo_toggled(self, checked): + def on_rYesNo_toggled(self, on): """ Private slot to handle the toggled signal of the rYesNo radio button. @@ -184,7 +184,7 @@ self.__enabledGroups() @pyqtSlot(bool) - def on_rRetryAbort_toggled(self, checked): + def on_rRetryAbort_toggled(self, on): """ Private slot to handle the toggled signal of the rRetryAbort radio button. @@ -194,7 +194,7 @@ self.__enabledGroups() @pyqtSlot(bool) - def on_rOkToClearData_toggled(self, checked): + def on_rOkToClearData_toggled(self, on): """ Private slot to handle the toggled signal of the rOkToClearData radio button. @@ -204,7 +204,7 @@ self.__enabledGroups() @pyqtSlot(bool) - def on_rAbout_toggled(self, checked): + def on_rAbout_toggled(self, on): """ Private slot to handle the toggled signal of the rAbout radio button. @@ -214,7 +214,7 @@ self.__enabledGroups() @pyqtSlot(bool) - def on_rAboutQt_toggled(self, checked): + def on_rAboutQt_toggled(self, on): """ Private slot to handle the toggled signal of the rAboutQt radio button. @@ -224,7 +224,7 @@ self.__enabledGroups() @pyqtSlot(bool) - def on_rStandard_toggled(self, checked): + def on_rStandard_toggled(self, on): """ Private slot to handle the toggled signal of the rStandard radio button. @@ -431,7 +431,6 @@ Private method to generate the button code for the default button. @param istring indentation string (string) - @param indString string used for indentation (space or tab) (string) @return the button code (string) """ btnCode = ""