Preferences/ToolConfigurationDialog.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 a configuration dialog for the tools menu. 7 Module implementing a configuration dialog for the tools menu.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 import copy 12 import copy
11 13
12 from PyQt4.QtCore import Qt, pyqtSlot 14 from PyQt4.QtCore import Qt, pyqtSlot
13 from PyQt4.QtGui import QDialog 15 from PyQt4.QtGui import QDialog
28 Constructor 30 Constructor
29 31
30 @param toollist list of configured tools 32 @param toollist list of configured tools
31 @param parent parent widget (QWidget) 33 @param parent parent widget (QWidget)
32 """ 34 """
33 super().__init__(parent) 35 super(ToolConfigurationDialog, self).__init__(parent)
34 self.setupUi(self) 36 self.setupUi(self)
35 37
36 self.iconCompleter = E5FileCompleter(self.iconEdit) 38 self.iconCompleter = E5FileCompleter(self.iconEdit)
37 self.executableCompleter = E5FileCompleter(self.executableEdit) 39 self.executableCompleter = E5FileCompleter(self.executableEdit)
38 40

eric ide

mercurial