Project/UserPropertiesDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the user specific project properties dialog. 7 Module implementing the user specific project properties dialog.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 from PyQt4.QtGui import QDialog 12 from PyQt4.QtGui import QDialog
11 13
12 from E5Gui.E5Application import e5App 14 from E5Gui.E5Application import e5App
13 15
26 28
27 @param project reference to the project object 29 @param project reference to the project object
28 @param parent parent widget of this dialog (QWidget) 30 @param parent parent widget of this dialog (QWidget)
29 @param name name of this dialog (string) 31 @param name name of this dialog (string)
30 """ 32 """
31 super().__init__(parent) 33 super(UserPropertiesDialog, self).__init__(parent)
32 if name: 34 if name:
33 self.setObjectName(name) 35 self.setObjectName(name)
34 self.setupUi(self) 36 self.setupUi(self)
35 37
36 self.project = project 38 self.project = project

eric ide

mercurial