29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 self.currUrlLabel.setText(currUrl) |
31 self.currUrlLabel.setText(currUrl) |
32 self.newUrlEdit.setText(currUrl) |
32 self.newUrlEdit.setText(currUrl) |
33 |
33 |
|
34 msh = self.minimumSizeHint() |
|
35 self.resize(max(self.width(), msh.width()), msh.height()) |
|
36 |
34 def getData(self): |
37 def getData(self): |
35 """ |
38 """ |
36 Public slot used to retrieve the data entered into the dialog. |
39 Public slot used to retrieve the data entered into the dialog. |
37 |
40 |
38 @return the new repository URL (string) and an indication, if |
41 @return the new repository URL (string) and an indication, if |