aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerplugin.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <[email protected]>2014-01-21 11:11:06 +0200
committerOrgad Shaneh <[email protected]>2014-01-21 10:16:43 +0100
commitfac8a8a0dc13c28088d4ea907616c9809b14786e (patch)
tree5e8fd2d52b7444934c3081dc803288e09d2cb54e /src/plugins/debugger/debuggerplugin.cpp
parentf7daff90fe5810ae4052e375c88a11e0cff680be (diff)
Fix compilation with Qt 5.0.0
Change-Id: If443079c66e9f0d1a9c203d2a41244b0fffdada4 Reviewed-by: Alessandro Portale <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index 02024db169b..0f1a9f06385 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -2641,7 +2641,7 @@ QMessageBox *showMessageBox(int icon, const QString &title,
title, text, QMessageBox::StandardButtons(buttons),
ICore::mainWindow());
mb->setAttribute(Qt::WA_DeleteOnClose);
-#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 1, 0))
mb->setTextInteractionFlags(Qt::TextSelectableByMouse);
#endif
mb->show();