summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-02-10 12:15:33 +0100
committercon <qtc-committer@nokia.com>2011-02-11 11:29:12 +0100
commit8ef69343b882fa3dc0156ffc947e45c844d8ff0d (patch)
treed078118b904efcec882b96f06a0b599b73445b77
parent72201a845e0fefcd5323c5ecc100e1b9a4f2e981 (diff)
downloadqt-creator-8ef69343b882fa3dc0156ffc947e45c844d8ff0d.tar.gz
Maemo: Show project name in application output window when debugging.v2.1.0
The tab is widget title is currently empty, so users might not know what is running there. Task-number: QTCREATORBUG-3775 Reviewed-by: hjk
-rw-r--r--src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp
index 1502f86278..2aff831c84 100644
--- a/src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp
+++ b/src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp
@@ -103,6 +103,7 @@ RunControl *MaemoDebugSupport::createDebugRunControl(MaemoRunConfiguration *runC
} else {
params.startMode = AttachToRemote;
}
+ params.displayName = runConfig->displayName();
DebuggerRunControl * const debuggerRunControl
= DebuggerPlugin::createDebugger(params, runConfig);