From 3247ecf7581d1ab5b9f3fa97cf106df1fc91fe52 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Mon, 17 Dec 2012 13:42:52 +0100 Subject: [PATCH] Replace dead link to Debugging Tools download by Wiki link. Change-Id: I26d227464ae25edf92dc06f1c43cd0188b084132 Reviewed-by: hjk --- src/plugins/debugger/debuggerkitconfigwidget.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/plugins/debugger/debuggerkitconfigwidget.cpp b/src/plugins/debugger/debuggerkitconfigwidget.cpp index f0c40afa896..f702c348aee 100644 --- a/src/plugins/debugger/debuggerkitconfigwidget.cpp +++ b/src/plugins/debugger/debuggerkitconfigwidget.cpp @@ -56,9 +56,7 @@ namespace Debugger { namespace Internal { - -static const char dgbToolsDownloadLink32C[] = "http://www.microsoft.com/whdc/devtools/debugging/installx86.Mspx"; -static const char dgbToolsDownloadLink64C[] = "http://www.microsoft.com/whdc/devtools/debugging/install64bit.Mspx"; +static const char debuggingToolsWikiLinkC[] = "http://qt-project.org/wiki/Qt_Creator_Windows_Debugging"; // ----------------------------------------------------------------------- // DebuggerKitConfigWidget: @@ -205,12 +203,12 @@ void DebuggerKitConfigDialog::refreshLabel() #else const bool is64bit = false; #endif - const QString link = is64bit ? QLatin1String(dgbToolsDownloadLink64C) : QLatin1String(dgbToolsDownloadLink32C); const QString versionString = is64bit ? tr("64-bit version") : tr("32-bit version"); //: Label text for path configuration. %2 is "x-bit version". text = tr("

Specify the path to the " "Windows Console Debugger executable" - " (%2) here.

""").arg(link, versionString); + " (%2) here.

"""). + arg(QLatin1String(debuggingToolsWikiLinkC), versionString); } break; default: