From 26b28804a7b71d9458999ff7341b1a4fbf7eee7e Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 8 Apr 2011 10:47:26 +0200 Subject: [PATCH] debugger: fix display name when using "start and debug external app" Reviewed-by: Lasse Holmstedt --- src/plugins/debugger/debuggerplugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 70bed1ce2cf..583201b0be0 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1365,6 +1365,7 @@ void DebuggerPluginPrivate::startExternalApplication() sp.toolChainAbi = dlg.abi(); sp.debuggerCommand = dlg.debuggerCommand(); sp.workingDirectory = dlg.workingDirectory(); + sp.displayName = sp.executable; if (!dlg.executableArguments().isEmpty()) sp.processArgs = dlg.executableArguments(); // Fixme: 1 of 3 testing hacks.