1130:3e9f0330f833 | 1131:7781e396c903 |
---|---|
28 """ | 28 """ |
29 def __init__(self, parent=None): | 29 def __init__(self, parent=None): |
30 """ | 30 """ |
31 Constructor | 31 Constructor |
32 """ | 32 """ |
33 QDialog.__init__(self, parent) | 33 super().__init__(parent) |
34 self.setupUi(self) | 34 self.setupUi(self) |
35 | 35 |
36 self.clearButton.setIcon(UI.PixmapCache.getIcon("clearLeft.png")) | 36 self.clearButton.setIcon(UI.PixmapCache.getIcon("clearLeft.png")) |
37 | 37 |
38 self.__adBlockModel = AdBlockModel(self) | 38 self.__adBlockModel = AdBlockModel(self) |