40 """ |
40 """ |
41 VcsProjectHelper.__init__(self, vcsObject, projectObject, parent, name) |
41 VcsProjectHelper.__init__(self, vcsObject, projectObject, parent, name) |
42 |
42 |
43 # instantiate the extensions |
43 # instantiate the extensions |
44 self.__extensions = { |
44 self.__extensions = { |
45 "bookmarks" : BookmarksProjectHelper(), |
45 "bookmarks": BookmarksProjectHelper(), |
46 "mq" : QueuesProjectHelper(), |
46 "mq": QueuesProjectHelper(), |
47 } |
47 } |
48 |
48 |
49 def setObjects(self, vcsObject, projectObject): |
49 def setObjects(self, vcsObject, projectObject): |
50 """ |
50 """ |
51 Public method to set references to the vcs and project objects. |
51 Public method to set references to the vcs and project objects. |