733 """ |
733 """ |
734 Constructor |
734 Constructor |
735 |
735 |
736 @param parent reference to the parent widget (QWidget) |
736 @param parent reference to the parent widget (QWidget) |
737 """ |
737 """ |
738 QDialog.__init__(self, parent) |
738 super().__init__(parent) |
739 self.setupUi(self) |
739 self.setupUi(self) |
740 |
740 |
741 self.ericLabel.setText(titleText) |
741 self.ericLabel.setText(titleText) |
742 self.ericPixmap.setPixmap(UI.PixmapCache.getPixmap("eric.png")) |
742 self.ericPixmap.setPixmap(UI.PixmapCache.getPixmap("eric.png")) |
743 |
743 |