diff options
author | Eike Ziller <eike.ziller@nokia.com> | 2011-10-31 15:58:21 +0100 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2011-10-31 16:03:15 +0100 |
commit | 3cb6c233345616e2d1af4ede9e71471931f117f1 (patch) | |
tree | 635309792c1cb43355b9300175efaf4c8a72d8a7 /src/plugins/debugger | |
parent | 91b79844221e511cf2e0d1c1d5296f3b4dccff7d (diff) | |
download | qt-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.cpp | 2 |
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); |