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