492 """ |
492 """ |
493 Constructor |
493 Constructor |
494 |
494 |
495 @param parent reference to the parent widget (QWidget) |
495 @param parent reference to the parent widget (QWidget) |
496 """ |
496 """ |
497 super(SymbolsWidget, self).__init__(parent) |
497 super().__init__(parent) |
498 self.setupUi(self) |
498 self.setupUi(self) |
499 |
499 |
500 self.setWindowIcon(UI.PixmapCache.getIcon("eric")) |
500 self.setWindowIcon(UI.PixmapCache.getIcon("eric")) |
501 |
501 |
502 self.__model = SymbolsModel(self) |
502 self.__model = SymbolsModel(self) |