23 @param info information to be shown (string) |
23 @param info information to be shown (string) |
24 @param username username as supplied by subversion (string) |
24 @param username username as supplied by subversion (string) |
25 @param showSave flag to indicate to show the save checkbox (boolean) |
25 @param showSave flag to indicate to show the save checkbox (boolean) |
26 @param saveIt flag indicating the value for the save checkbox (boolean) |
26 @param saveIt flag indicating the value for the save checkbox (boolean) |
27 """ |
27 """ |
28 QDialog.__init__(self, parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 self.infoLabel.setText(info) |
31 self.infoLabel.setText(info) |
32 self.usernameEdit.setText(username) |
32 self.usernameEdit.setText(username) |
33 self.saveCheckBox.setVisible(showSave) |
33 self.saveCheckBox.setVisible(showSave) |