Regression: Recent project menu doesn't show file paths

Task-number: 251307
This commit is contained in:
con
2009-04-20 17:35:07 +02:00
parent 039024e727
commit 57bf55dec9

View File

@@ -1554,7 +1554,7 @@ void ProjectExplorerPlugin::updateRecentProjectMenu()
const QPair<QString, QString> &s = *it; const QPair<QString, QString> &s = *it;
if (s.first.endsWith(".qws")) if (s.first.endsWith(".qws"))
continue; continue;
QAction *action = menu->addAction(s.second); QAction *action = menu->addAction(s.first);
action->setData(s.first); action->setData(s.first);
connect(action, SIGNAL(triggered()), this, SLOT(openRecentProject())); connect(action, SIGNAL(triggered()), this, SLOT(openRecentProject()));
} }