Plugins/VcsPlugins/vcsSubversion/SvnTagDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 3145
a9de05d4a22f
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing a dialog to enter the data for a tagging operation. 7 Module implementing a dialog to enter the data for a tagging operation.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 from PyQt4.QtGui import QDialog, QDialogButtonBox 12 from PyQt4.QtGui import QDialog, QDialogButtonBox
11 13
12 from .Ui_SvnTagDialog import Ui_SvnTagDialog 14 from .Ui_SvnTagDialog import Ui_SvnTagDialog
13 15
24 @param reposURL repository path (string) or None 26 @param reposURL repository path (string) or None
25 @param standardLayout flag indicating the layout of the 27 @param standardLayout flag indicating the layout of the
26 repository (boolean) 28 repository (boolean)
27 @param parent parent widget (QWidget) 29 @param parent parent widget (QWidget)
28 """ 30 """
29 super().__init__(parent) 31 super(SvnTagDialog, self).__init__(parent)
30 self.setupUi(self) 32 self.setupUi(self)
31 33
32 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) 34 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok)
33 self.okButton.setEnabled(False) 35 self.okButton.setEnabled(False)
34 36

eric ide

mercurial