7 Module implementing the E5MessageBox wizard plugin. |
7 Module implementing the E5MessageBox wizard plugin. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt4.QtCore import QObject |
12 from PyQt5.QtCore import QObject |
13 from PyQt4.QtGui import QDialog |
13 from PyQt5.QtWidgets import QDialog |
14 |
14 |
15 from E5Gui.E5Application import e5App |
15 from E5Gui.E5Application import e5App |
16 from E5Gui.E5Action import E5Action |
16 from E5Gui.E5Action import E5Action |
17 from E5Gui import E5MessageBox |
17 from E5Gui import E5MessageBox |
18 |
18 |