39 @param isTranslationsBrowser flag indicating, the helper is requested for the |
39 @param isTranslationsBrowser flag indicating, the helper is requested for the |
40 translations browser (this needs some special treatment) |
40 translations browser (this needs some special treatment) |
41 @param parent parent widget (QWidget) |
41 @param parent parent widget (QWidget) |
42 @param name name of this object (string) |
42 @param name name of this object (string) |
43 """ |
43 """ |
44 QObject.__init__(self, parent) |
44 super().__init__(parent) |
45 if name: |
45 if name: |
46 self.setObjectName(name) |
46 self.setObjectName(name) |
47 |
47 |
48 self.vcs = vcsObject |
48 self.vcs = vcsObject |
49 self.browser = browserObject |
49 self.browser = browserObject |