aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcon <qtc-committer@nokia.com>2009-04-20 17:35:07 +0200
committercon <qtc-committer@nokia.com>2009-04-20 17:35:07 +0200
commit57bf55dec96e0176831a70b613d581c179cd172a (patch)
tree9b885bebb5b2690b6003d87c11d3b27d6b75d680
parent039024e7273d9b95b125551dff750aabdd1d40a5 (diff)
Regression: Recent project menu doesn't show file paths
Task-number: 251307
-rw-r--r--src/plugins/projectexplorer/projectexplorer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp
index 06bf33a3e3..432db12fdc 100644
--- a/src/plugins/projectexplorer/projectexplorer.cpp
+++ b/src/plugins/projectexplorer/projectexplorer.cpp
@@ -1554,7 +1554,7 @@ void ProjectExplorerPlugin::updateRecentProjectMenu()
const QPair<QString, QString> &s = *it;
if (s.first.endsWith(".qws"))
continue;
- QAction *action = menu->addAction(s.second);
+ QAction *action = menu->addAction(s.first);
action->setData(s.first);
connect(action, SIGNAL(triggered()), this, SLOT(openRecentProject()));
}