28 @param files list of files, that have been found for addition |
28 @param files list of files, that have been found for addition |
29 (list of strings) |
29 (list of strings) |
30 @param parent parent widget of this dialog (QWidget) |
30 @param parent parent widget of this dialog (QWidget) |
31 @param name name of this dialog (string) |
31 @param name name of this dialog (string) |
32 """ |
32 """ |
33 super(AddFoundFilesDialog, self).__init__(parent) |
33 super().__init__(parent) |
34 if name: |
34 if name: |
35 self.setObjectName(name) |
35 self.setObjectName(name) |
36 self.setupUi(self) |
36 self.setupUi(self) |
37 |
37 |
38 self.addAllButton = self.buttonBox.addButton( |
38 self.addAllButton = self.buttonBox.addButton( |