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