summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/messageboxhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/installer/messageboxhandler.cpp')
-rw-r--r--src/libs/installer/messageboxhandler.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/libs/installer/messageboxhandler.cpp b/src/libs/installer/messageboxhandler.cpp
index 3c3a70ee9..dd55a9c7f 100644
--- a/src/libs/installer/messageboxhandler.cpp
+++ b/src/libs/installer/messageboxhandler.cpp
@@ -128,9 +128,13 @@ MessageBoxHandler *MessageBoxHandler::instance()
QWidget *MessageBoxHandler::currentBestSuitParent()
{
- if (QApplication::type() == QApplication::Tty) {
+#if QT_VERSION < 0x050000
+ if (QApplication::type() == QApplication::Tty)
return 0;
- }
+#else
+ if (qobject_cast<QApplication*> (qApp) == 0)
+ return 0;
+#endif
if (qApp->activeModalWidget())
return qApp->activeModalWidget();
@@ -283,8 +287,13 @@ QMessageBox::StandardButton MessageBoxHandler::showMessageBox(MessageType messag
qDebug() << QString::fromLatin1("created %1 message box %2: '%3', %4").arg(messageTypeHash
.value(messageType),identifier, title, text);
+#if QT_VERSION < 0x050000
if (QApplication::type() == QApplication::Tty)
return defaultButton;
+#else
+ if (qobject_cast<QApplication*> (qApp) == 0)
+ return defaultButton;
+#endif
if (m_automaticAnswers.contains(identifier))
return m_automaticAnswers.value(identifier);