22 def __init__(self, submodules, parent=None): |
22 def __init__(self, submodules, parent=None): |
23 """ |
23 """ |
24 Constructor |
24 Constructor |
25 |
25 |
26 @param submodules list of submodule data to be shown |
26 @param submodules list of submodule data to be shown |
27 @type list of dictionaries with submodule name, path, URL and branch |
27 @type list of dictionaries with submodule name, path, URL and branch |
28 @param parent reference to the parent widget |
28 @param parent reference to the parent widget |
29 @type QWidget |
29 @type QWidget |
30 """ |
30 """ |
31 super(GitSubmodulesListDialog, self).__init__(parent) |
31 super(GitSubmodulesListDialog, self).__init__(parent) |
32 self.setupUi(self) |
32 self.setupUi(self) |