2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing a dialog for the configuration of search engines. | 7 Module implementing a dialog for the configuration of search engines. |
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 from PyQt4.QtCore import pyqtSlot | 13 from PyQt4.QtCore import pyqtSlot |
12 | 14 |
13 from E5Gui import E5MessageBox, E5FileDialog | 15 from E5Gui import E5MessageBox, E5FileDialog |
23 """ | 25 """ |
24 def __init__(self, parent=None): | 26 def __init__(self, parent=None): |
25 """ | 27 """ |
26 Constructor | 28 Constructor |
27 """ | 29 """ |
28 super().__init__(parent) | 30 super(OpenSearchDialog, self).__init__(parent) |
29 self.setupUi(self) | 31 self.setupUi(self) |
30 | 32 |
31 self.setModal(True) | 33 self.setModal(True) |
32 | 34 |
33 self.__mw = parent | 35 self.__mw = parent |