21 Constructor |
21 Constructor |
22 |
22 |
23 @param currUrl current repository URL (string) |
23 @param currUrl current repository URL (string) |
24 @param parent parent widget (QWidget) |
24 @param parent parent widget (QWidget) |
25 """ |
25 """ |
26 super(SvnRelocateDialog, self).__init__(parent) |
26 super().__init__(parent) |
27 self.setupUi(self) |
27 self.setupUi(self) |
28 |
28 |
29 self.currUrlLabel.setText(currUrl) |
29 self.currUrlLabel.setText(currUrl) |
30 self.newUrlEdit.setText(currUrl) |
30 self.newUrlEdit.setText(currUrl) |
31 |
31 |