Preferences/ConfigurationPages/EditorAPIsPage.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2408
dc3a7c9d8f6e
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
5 5
6 """ 6 """
7 Module implementing the Editor APIs configuration page. 7 Module implementing the Editor APIs configuration page.
8 """ 8 """
9 9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
11
10 from PyQt4.QtCore import QDir, pyqtSlot, QFileInfo 12 from PyQt4.QtCore import QDir, pyqtSlot, QFileInfo
11 from PyQt4.QtGui import QInputDialog 13 from PyQt4.QtGui import QInputDialog
12 14
13 from E5Gui.E5Application import e5App 15 from E5Gui.E5Application import e5App
14 from E5Gui.E5Completers import E5FileCompleter 16 from E5Gui.E5Completers import E5FileCompleter
27 """ 29 """
28 def __init__(self): 30 def __init__(self):
29 """ 31 """
30 Constructor 32 Constructor
31 """ 33 """
32 super().__init__() 34 super(EditorAPIsPage, self).__init__()
33 self.setupUi(self) 35 self.setupUi(self)
34 self.setObjectName("EditorAPIsPage") 36 self.setObjectName("EditorAPIsPage")
35 37
36 self.prepareApiButton.setText(self.trUtf8("Compile APIs")) 38 self.prepareApiButton.setText(self.trUtf8("Compile APIs"))
37 self.__currentAPI = None 39 self.__currentAPI = None

eric ide

mercurial