30 Constructor |
30 Constructor |
31 |
31 |
32 @param vcs reference to the vcs object |
32 @param vcs reference to the vcs object |
33 @param parent reference to the parent widget (QWidget) |
33 @param parent reference to the parent widget (QWidget) |
34 """ |
34 """ |
35 QDialog.__init__(self, parent) |
35 super().__init__(parent) |
36 self.setupUi(self) |
36 self.setupUi(self) |
37 |
37 |
38 self.clearRxEditButton.setIcon(UI.PixmapCache.getIcon("clearLeft.png")) |
38 self.clearRxEditButton.setIcon(UI.PixmapCache.getIcon("clearLeft.png")) |
39 |
39 |
40 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) |
40 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) |