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)) |