Project/PropertiesDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2408
dc3a7c9d8f6e
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the project properties dialog. 7 Module implementing the project properties dialog.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 import os 12 import os
11 13
12 from PyQt4.QtCore import QDir, pyqtSlot 14 from PyQt4.QtCore import QDir, pyqtSlot
13 from PyQt4.QtGui import QDialog 15 from PyQt4.QtGui import QDialog
33 @param project reference to the project object 35 @param project reference to the project object
34 @param new flag indicating the generation of a new project 36 @param new flag indicating the generation of a new project
35 @param parent parent widget of this dialog (QWidget) 37 @param parent parent widget of this dialog (QWidget)
36 @param name name of this dialog (string) 38 @param name name of this dialog (string)
37 """ 39 """
38 super().__init__(parent) 40 super(PropertiesDialog, self).__init__(parent)
39 if name: 41 if name:
40 self.setObjectName(name) 42 self.setObjectName(name)
41 self.setupUi(self) 43 self.setupUi(self)
42 44
43 self.project = project 45 self.project = project

eric ide

mercurial