29 def __init__(self, vcs, mode = "log", parent = None): |
29 def __init__(self, vcs, mode = "log", parent = None): |
30 """ |
30 """ |
31 Constructor |
31 Constructor |
32 |
32 |
33 @param vcs reference to the vcs object |
33 @param vcs reference to the vcs object |
34 @param mode mode of the dialog (string, one of log, incoming, outgoing) |
34 @param mode mode of the dialog (string; one of log, incoming, outgoing) |
35 @param parent parent widget (QWidget) |
35 @param parent parent widget (QWidget) |
36 """ |
36 """ |
37 QWidget.__init__(self, parent) |
37 QWidget.__init__(self, parent) |
38 self.setupUi(self) |
38 self.setupUi(self) |
39 |
39 |