#1665 Add replaceCase command to command file interface

This commit is contained in:
Bjørnar Grip Fjær
2017-07-28 11:28:55 +02:00
parent 865238bc71
commit c02c39d59d
8 changed files with 141 additions and 11 deletions

View File

@@ -18,6 +18,8 @@
#include "RicfOpenProject.h"
#include "RicfCommandFileExecutor.h"
#include "RiaApplication.h"
#include "RiaLogging.h"
@@ -40,5 +42,8 @@ void RicfOpenProject::execute()
if (!ok)
{
RiaLogging::error(QString("openProject: Unable to open project at %1").arg(m_path()));
return;
}
RicfCommandFileExecutor::instance()->setLastProjectPath(m_path);
}