Project/SpellingPropertiesDialog.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 Spelling Properties dialog. 7 Module implementing the Spelling 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 pyqtSlot 14 from PyQt4.QtCore import pyqtSlot
13 from PyQt4.QtGui import QDialog 15 from PyQt4.QtGui import QDialog
31 33
32 @param project reference to the project object 34 @param project reference to the project object
33 @param new flag indicating the generation of a new project 35 @param new flag indicating the generation of a new project
34 @param parent parent widget of this dialog (QWidget) 36 @param parent parent widget of this dialog (QWidget)
35 """ 37 """
36 super().__init__(parent) 38 super(SpellingPropertiesDialog, self).__init__(parent)
37 self.setupUi(self) 39 self.setupUi(self)
38 40
39 self.project = project 41 self.project = project
40 self.parent = parent 42 self.parent = parent
41 43

eric ide

mercurial