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