34 @param preselect list of lexer names to be preselected |
34 @param preselect list of lexer names to be preselected |
35 @type list of str |
35 @type list of str |
36 @param parent reference to the parent widget |
36 @param parent reference to the parent widget |
37 @type QWidget |
37 @type QWidget |
38 """ |
38 """ |
39 super(EditorHighlightingStylesSelectionDialog, self).__init__(parent) |
39 super().__init__(parent) |
40 self.setupUi(self) |
40 self.setupUi(self) |
41 |
41 |
42 self.__selectAllButton = self.buttonBox.addButton( |
42 self.__selectAllButton = self.buttonBox.addButton( |
43 self.tr("Select All"), QDialogButtonBox.ButtonRole.ActionRole) |
43 self.tr("Select All"), QDialogButtonBox.ButtonRole.ActionRole) |
44 |
44 |