32 """ |
32 """ |
33 Constructor |
33 Constructor |
34 |
34 |
35 @param parent reference to the parent object (QObject) |
35 @param parent reference to the parent object (QObject) |
36 """ |
36 """ |
37 super(GreaseMonkeyConfigurationListDelegate, self).__init__(parent) |
37 super().__init__(parent) |
38 |
38 |
39 self.__removePixmap = UI.PixmapCache.getIcon( |
39 self.__removePixmap = UI.PixmapCache.getIcon( |
40 "greaseMonkeyTrash").pixmap( |
40 "greaseMonkeyTrash").pixmap( |
41 GreaseMonkeyConfigurationListDelegate.RemoveIconSize) |
41 GreaseMonkeyConfigurationListDelegate.RemoveIconSize) |
42 self.__rowHeight = 0 |
42 self.__rowHeight = 0 |