160 """ |
160 """ |
161 Constructor |
161 Constructor |
162 |
162 |
163 @param parent reference to the parent widget (QWidget) |
163 @param parent reference to the parent widget (QWidget) |
164 """ |
164 """ |
165 QWidget.__init__(self, parent) |
165 super().__init__(parent) |
166 self.setupUi(self) |
166 self.setupUi(self) |
167 |
167 |
168 self.setWindowIcon(UI.PixmapCache.getIcon("eric.png")) |
168 self.setWindowIcon(UI.PixmapCache.getIcon("eric.png")) |
169 |
169 |
170 self.__badNumberSheet = "background-color: #ffa0a0;" |
170 self.__badNumberSheet = "background-color: #ffa0a0;" |