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