5 |
5 |
6 """ |
6 """ |
7 Module implementing a specialized error message dialog. |
7 Module implementing a specialized error message dialog. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt4.QtCore import qInstallMsgHandler, QCoreApplication, QtDebugMsg, \ |
12 from PyQt4.QtCore import qInstallMsgHandler, QCoreApplication, QtDebugMsg, \ |
13 QtWarningMsg, QtCriticalMsg, QtFatalMsg, QThread, QMetaObject, Qt, Q_ARG, \ |
13 QtWarningMsg, QtCriticalMsg, QtFatalMsg, QThread, QMetaObject, Qt, Q_ARG, \ |
14 QSettings |
14 QSettings |
15 from PyQt4.QtGui import QErrorMessage, qApp, QDialog |
15 from PyQt4.QtGui import QErrorMessage, qApp, QDialog |