Plugins/VcsPlugins/vcsSubversion/SvnUrlSelectionDialog.py

changeset 1268
4fc337f391c9
parent 1131
7781e396c903
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1267:5eddb59304c7 1268:4fc337f391c9
33 @param parent parent widget of the dialog (QWidget) 33 @param parent parent widget of the dialog (QWidget)
34 """ 34 """
35 super().__init__(parent) 35 super().__init__(parent)
36 self.setupUi(self) 36 self.setupUi(self)
37 37
38 if vcs.versionStr < "1.4.0": 38 if vcs.version < (1, 4, 0):
39 self.summaryCheckBox.setEnabled(False) 39 self.summaryCheckBox.setEnabled(False)
40 self.summaryCheckBox.setChecked(False) 40 self.summaryCheckBox.setChecked(False)
41 41
42 self.vcs = vcs 42 self.vcs = vcs
43 self.tagsList = tagsList 43 self.tagsList = tagsList

eric ide

mercurial