9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 import os |
12 import os |
13 |
13 |
14 from PyQt4.QtCore import pyqtSlot |
14 from PyQt5.QtCore import pyqtSlot |
15 from PyQt4.QtGui import QMessageBox, QDialog, QDialogButtonBox |
15 from PyQt5.QtWidgets import QMessageBox, QDialog, QDialogButtonBox |
16 |
16 |
17 from .Ui_MessageBoxWizardDialog import Ui_MessageBoxWizardDialog |
17 from .Ui_MessageBoxWizardDialog import Ui_MessageBoxWizardDialog |
18 |
18 |
19 |
19 |
20 class MessageBoxWizardDialog(QDialog, Ui_MessageBoxWizardDialog): |
20 class MessageBoxWizardDialog(QDialog, Ui_MessageBoxWizardDialog): |