Plugins/WizardPlugins/InputDialogWizard/InputDialogWizardDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
27 """ 27 """
28 Constructor 28 Constructor
29 29
30 @param parent parent widget (QWidget) 30 @param parent parent widget (QWidget)
31 """ 31 """
32 QDialog.__init__(self, 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