Skip to content

Commit

Permalink
Update according to API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
adeas31 committed Mar 11, 2018
1 parent 58f4ab1 commit 3a1daf4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions OMEdit/OMEditGUI/OMS/OMSProxy.cpp
Expand Up @@ -125,7 +125,7 @@ bool OMSProxy::statusToBool(oms_status_enu_t status)
*/
void OMSProxy::setLogFile(QString filename)
{
oms_setLogFile(filename.toStdString().c_str());
oms2_setLogFile(filename.toStdString().c_str());
}

/*!
Expand All @@ -135,7 +135,7 @@ void OMSProxy::setLogFile(QString filename)
*/
void OMSProxy::setTempDirectory(QString path)
{
oms_setTempDirectory(path.toStdString().c_str());
oms2_setTempDirectory(path.toStdString().c_str());
}

/*!
Expand All @@ -145,7 +145,7 @@ void OMSProxy::setTempDirectory(QString path)
*/
void OMSProxy::setWorkingDirectory(QString path)
{
oms_setWorkingDirectory(path.toStdString().c_str());
oms2_setWorkingDirectory(path.toStdString().c_str());
}

/*!
Expand Down

0 comments on commit 3a1daf4

Please sign in to comment.