18 |
18 |
19 class SvnUrlSelectionDialog(QDialog, Ui_SvnUrlSelectionDialog): |
19 class SvnUrlSelectionDialog(QDialog, Ui_SvnUrlSelectionDialog): |
20 """ |
20 """ |
21 Class implementing a dialog to enter the URLs for the svn diff command. |
21 Class implementing a dialog to enter the URLs for the svn diff command. |
22 """ |
22 """ |
23 def __init__(self, vcs, tagsList, branchesList, path, parent = None): |
23 def __init__(self, vcs, tagsList, branchesList, path, parent=None): |
24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 |
26 |
27 @param vcs reference to the vcs object |
27 @param vcs reference to the vcs object |
28 @param tagsList list of tags (list of strings) |
28 @param tagsList list of tags (list of strings) |
84 self.labelCombo2.addItems([reposURL] + sorted(self.vcs.tagsList)) |
84 self.labelCombo2.addItems([reposURL] + sorted(self.vcs.tagsList)) |
85 self.labelCombo2.setEnabled(True) |
85 self.labelCombo2.setEnabled(True) |
86 |
86 |
87 def __changeLabelCombo(self, labelCombo, type_): |
87 def __changeLabelCombo(self, labelCombo, type_): |
88 """ |
88 """ |
89 Private method used to change the label combo depending on the |
89 Private method used to change the label combo depending on the |
90 selected type. |
90 selected type. |
91 |
91 |
92 @param labelCombo reference to the labelCombo object (QComboBox) |
92 @param labelCombo reference to the labelCombo object (QComboBox) |
93 @param type type string (string) |
93 @param type type string (string) |
94 """ |
94 """ |