2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the QRegExp wizard plugin. | 7 Module implementing the QRegExp wizard plugin. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 from PyQt4.QtCore import QObject | 12 from PyQt4.QtCore import QObject |
11 from PyQt4.QtGui import QDialog | 13 from PyQt4.QtGui import QDialog |
12 | 14 |
13 from E5Gui.E5Application import e5App | 15 from E5Gui.E5Application import e5App |
38 """ | 40 """ |
39 Constructor | 41 Constructor |
40 | 42 |
41 @param ui reference to the user interface object (UI.UserInterface) | 43 @param ui reference to the user interface object (UI.UserInterface) |
42 """ | 44 """ |
43 super().__init__(ui) | 45 super(QRegExpWizard, self).__init__(ui) |
44 self.__ui = ui | 46 self.__ui = ui |
45 | 47 |
46 def activate(self): | 48 def activate(self): |
47 """ | 49 """ |
48 Public method to activate this plugin. | 50 Public method to activate this plugin. |