51:29c461f7bea0 | 52:c264091162a2 |
---|---|
21 """ | 21 """ |
22 Constructor | 22 Constructor |
23 | 23 |
24 @param parent reference to the parent widget (QWidget) | 24 @param parent reference to the parent widget (QWidget) |
25 """ | 25 """ |
26 super(IfTagInputDialog, self).__init__(parent) | 26 super().__init__(parent) |
27 self.setupUi(self) | 27 self.setupUi(self) |
28 | 28 |
29 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) | 29 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
30 | 30 |
31 @pyqtSlot(str) | 31 @pyqtSlot(str) |