From 57bf55dec96e0176831a70b613d581c179cd172a Mon Sep 17 00:00:00 2001 From: con Date: Mon, 20 Apr 2009 17:35:07 +0200 Subject: [PATCH] Regression: Recent project menu doesn't show file paths Task-number: 251307 --- src/plugins/projectexplorer/projectexplorer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 &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())); } -- GitLab