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