23 |
23 |
24 @param vcs reference to the version control object |
24 @param vcs reference to the version control object |
25 @param project reference to the project object |
25 @param project reference to the project object |
26 @param parent parent widget (QWidget) |
26 @param parent parent widget (QWidget) |
27 """ |
27 """ |
28 QDialog.__init__(self, parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 def getData(self): |
31 def getData(self): |
32 """ |
32 """ |
33 Public slot to retrieve the data entered into the dialog. |
33 Public slot to retrieve the data entered into the dialog. |