28 @param tagsList list of tags (list of strings) |
28 @param tagsList list of tags (list of strings) |
29 @param branchesList list of branches (list of strings) |
29 @param branchesList list of branches (list of strings) |
30 @param bookmarksList list of bookmarks (list of strings) |
30 @param bookmarksList list of bookmarks (list of strings) |
31 @param parent reference to the parent widget (QWidget) |
31 @param parent reference to the parent widget (QWidget) |
32 """ |
32 """ |
33 QDialog.__init__(self, parent) |
33 super().__init__(parent) |
34 self.setupUi(self) |
34 self.setupUi(self) |
35 |
35 |
36 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
36 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
37 |
37 |
38 self.__mode = mode |
38 self.__mode = mode |