15 class GitUserConfigDataDialog(QDialog, Ui_GitUserConfigDataDialog): |
15 class GitUserConfigDataDialog(QDialog, Ui_GitUserConfigDataDialog): |
16 """ |
16 """ |
17 Class implementing a dialog to enter some user data. |
17 Class implementing a dialog to enter some user data. |
18 """ |
18 """ |
19 |
19 |
20 def __init__(self, version=(0, 0), parent=None): |
20 def __init__(self, parent=None): |
21 """ |
21 """ |
22 Constructor |
22 Constructor |
23 |
23 |
24 @param version Git version info |
|
25 @type tuple of (int, int) |
|
26 @param parent reference to the parent widget |
24 @param parent reference to the parent widget |
27 @type QWidget |
25 @type QWidget |
28 """ |
26 """ |
29 super().__init__(parent) |
27 super().__init__(parent) |
30 self.setupUi(self) |
28 self.setupUi(self) |