Plugins/VcsPlugins/vcsSubversion/SvnSwitchDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
24 @param reposURL repository path (string) or None 24 @param reposURL repository path (string) or None
25 @param standardLayout flag indicating the layout of the 25 @param standardLayout flag indicating the layout of the
26 repository (boolean) 26 repository (boolean)
27 @param parent parent widget (QWidget) 27 @param parent parent widget (QWidget)
28 """ 28 """
29 QDialog.__init__(self, parent) 29 super().__init__(parent)
30 self.setupUi(self) 30 self.setupUi(self)
31 31
32 self.tagCombo.clear() 32 self.tagCombo.clear()
33 self.tagCombo.addItems(sorted(taglist)) 33 self.tagCombo.addItems(sorted(taglist))
34 34

eric ide

mercurial