14 |
14 |
15 class VcsRepositoryInfoDialog(QDialog, Ui_VcsRepositoryInfoDialog): |
15 class VcsRepositoryInfoDialog(QDialog, Ui_VcsRepositoryInfoDialog): |
16 """ |
16 """ |
17 Class implemting a dialog to show repository information. |
17 Class implemting a dialog to show repository information. |
18 """ |
18 """ |
|
19 |
19 def __init__(self, parent, info): |
20 def __init__(self, parent, info): |
20 """ |
21 """ |
21 Constructor |
22 Constructor |
22 |
23 |
23 @param parent reference to the parent widget (QWidget) |
24 @param parent reference to the parent widget (QWidget) |
24 @param info info data to show (string) |
25 @param info info data to show (string) |
25 """ |
26 """ |
26 super().__init__(parent) |
27 super().__init__(parent) |
27 self.setupUi(self) |
28 self.setupUi(self) |