Plugins/VcsPlugins/vcsPySvn/SvnCommandDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
33 @param argvList history list of commandline arguments (list of strings) 33 @param argvList history list of commandline arguments (list of strings)
34 @param wdList history list of working directories (list of strings) 34 @param wdList history list of working directories (list of strings)
35 @param ppath pathname of the project directory (string) 35 @param ppath pathname of the project directory (string)
36 @param parent parent widget of this dialog (QWidget) 36 @param parent parent widget of this dialog (QWidget)
37 """ 37 """
38 QDialog.__init__(self, parent) 38 super().__init__(parent)
39 self.setupUi(self) 39 self.setupUi(self)
40 40
41 self.workdirCompleter = E5DirCompleter(self.workdirCombo) 41 self.workdirCompleter = E5DirCompleter(self.workdirCombo)
42 42
43 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) 43 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok)

eric ide

mercurial