23 @param realm name of the realm of the requested credentials (string) |
25 @param realm name of the realm of the requested credentials (string) |
24 @param username username as supplied by subversion (string) |
26 @param username username as supplied by subversion (string) |
25 @param may_save flag indicating, that subversion is willing to save |
27 @param may_save flag indicating, that subversion is willing to save |
26 the answers returned (boolean) |
28 the answers returned (boolean) |
27 """ |
29 """ |
28 super().__init__(parent) |
30 super(SvnLoginDialog, self).__init__(parent) |
29 self.setupUi(self) |
31 self.setupUi(self) |
30 |
32 |
31 self.realmLabel.setText(self.trUtf8("<b>Enter login data for realm {0}.</b>")\ |
33 self.realmLabel.setText(self.trUtf8("<b>Enter login data for realm {0}.</b>")\ |
32 .format(realm)) |
34 .format(realm)) |
33 self.usernameEdit.setText(username) |
35 self.usernameEdit.setText(username) |