Project/AddFoundFilesDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
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(

eric ide

mercurial