Fixed loading recent files in main window.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-07-18 22:55:18 +03:00
parent 18e0f6750a
commit 7cabc7df18

View File

@ -3636,13 +3636,12 @@ void MainWindow::CreateActions()
{ {
recentFileActs[i] = new QAction(this); recentFileActs[i] = new QAction(this);
recentFileActs[i]->setVisible(false); recentFileActs[i]->setVisible(false);
connect(recentFileActs[i], &QAction::triggered, [this]() connect(recentFileActs[i], &QAction::triggered, this, [this]()
{ {
QAction *action = qobject_cast<QAction *>(sender()); if (QAction *action = qobject_cast<QAction *>(sender()))
if (action)
{ {
const QString filePath = action->data().toString(); const QString filePath = action->data().toString();
if (not filePath.isEmpty()) if (not filePath.isEmpty())
{ {
LoadPattern(filePath); LoadPattern(filePath);
} }