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 def __init__(self, parent, info): |
19 def __init__(self, parent, info): |
|
20 """ |
|
21 Constructor |
|
22 |
|
23 @param parent reference to the parent widget (QWidget) |
|
24 @param info info data to show (string) |
|
25 """ |
20 super().__init__(parent) |
26 super().__init__(parent) |
21 self.setupUi(self) |
27 self.setupUi(self) |
22 self.infoBrowser.setHtml(info) |
28 self.infoBrowser.setHtml(info) |