summaryrefslogtreecommitdiff
path: root/src/plugins/debugger
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@nokia.com>2011-10-31 15:58:21 +0100
committerhjk <qthjk@ovi.com>2011-10-31 16:03:15 +0100
commit3cb6c233345616e2d1af4ede9e71471931f117f1 (patch)
tree635309792c1cb43355b9300175efaf4c8a72d8a7 /src/plugins/debugger
parent91b79844221e511cf2e0d1c1d5296f3b4dccff7d (diff)
downloadqt-creator-3cb6c233345616e2d1af4ede9e71471931f117f1.tar.gz
Fix showing of "Debugging Helper Missing" warning.
It was only showing up if one had a helper library that was outdated. Change-Id: I8d0ffcd16434dc6cfeadd408a2bdb59aa3ec73ba Reviewed-by: Daniel Teske <daniel.teske@nokia.com> Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/debugger')
-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 ff5edc942c..739dd37888 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -2483,7 +2483,7 @@ void DebuggerPluginPrivate::showMessage(const QString &msg, int channel, int tim
void DebuggerPluginPrivate::showQtDumperLibraryWarning(const QString &details)
{
QMessageBox dialog(mainWindow());
- QPushButton *qtPref = dialog.addButton(tr("Open Qt4 Options"),
+ QPushButton *qtPref = dialog.addButton(tr("Open Qt Options"),
QMessageBox::ActionRole);
QPushButton *helperOff = dialog.addButton(tr("Turn off Helper Usage"),
QMessageBox::ActionRole);