diff options
Diffstat (limited to 'src/plugins/projectexplorer/projectexplorer.cpp')
-rw-r--r-- | src/plugins/projectexplorer/projectexplorer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 34b5d83978..e7a00ad4f2 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())); } |