22 def __init__(self, tagsList, branchesList, bookmarksList, version, |
22 def __init__(self, tagsList, branchesList, bookmarksList, version, |
23 parent=None): |
23 parent=None): |
24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 |
26 |
27 @param tagsList list of tags (list of strings) |
27 @param tagsList list of tags |
28 @param branchesList list of branches (list of strings) |
28 @type list of str |
29 @param bookmarksList list of bookmarks (list of strings) |
29 @param branchesList list of branches |
30 @param parent reference to the parent widget (QWidget) |
30 @type list of str |
|
31 @param bookmarksList list of bookmarks |
|
32 @type list of str |
|
33 @param version tuple giving the Mercurial version |
|
34 @type tuple of int |
|
35 @param parent reference to the parent widget |
|
36 @type QWidget |
31 """ |
37 """ |
32 super(HgRebaseDialog, self).__init__(parent) |
38 super(HgRebaseDialog, self).__init__(parent) |
33 self.setupUi(self) |
39 self.setupUi(self) |
34 |
40 |
35 self.__sourceRevisionButtonGroup = QButtonGroup(self) |
41 self.__sourceRevisionButtonGroup = QButtonGroup(self) |