eric6/Plugins/WizardPlugins/InputDialogWizard/InputDialogWizardDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
27 """ 27 """
28 Constructor 28 Constructor
29 29
30 @param parent parent widget (QWidget) 30 @param parent parent widget (QWidget)
31 """ 31 """
32 super(InputDialogWizardDialog, self).__init__(parent) 32 super().__init__(parent)
33 self.setupUi(self) 33 self.setupUi(self)
34 34
35 # set the validators for the double line edots 35 # set the validators for the double line edots
36 self.eDoubleDefault.setValidator( 36 self.eDoubleDefault.setValidator(
37 QDoubleValidator(-2147483647, 2147483647, 99, self.eDoubleDefault)) 37 QDoubleValidator(-2147483647, 2147483647, 99, self.eDoubleDefault))

eric ide

mercurial