Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py

changeset 2964
84b65fb9e780
parent 2893
150de635fa29
child 3025
67064c71df21
child 3057
10516539f238
--- a/Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py	Sun Sep 29 15:23:19 2013 +0200
+++ b/Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py	Sun Sep 29 15:54:10 2013 +0200
@@ -132,7 +132,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.
@@ -142,7 +142,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.
@@ -152,7 +152,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.
@@ -162,7 +162,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.
@@ -172,7 +172,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.
@@ -182,7 +182,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.
@@ -192,7 +192,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.
@@ -202,7 +202,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.
@@ -212,7 +212,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.
@@ -222,7 +222,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.
@@ -429,7 +429,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 = ""

eric ide

mercurial