diff --git a/API_MachMgr.cpp b/API_MachMgr.cpp index 5d20d93..ae5df36 100644 --- a/API_MachMgr.cpp +++ b/API_MachMgr.cpp @@ -1429,12 +1429,12 @@ __stdcall EgtIsMachiningEmpty( void) //----------------------------------------------------------------------------- BOOL -__stdcall EgtApplyAllMachinings( BOOL bStopOnFirstErr, wchar_t*& wsErrList) +__stdcall EgtApplyAllMachinings( BOOL bRecalc, BOOL bStopOnFirstErr, wchar_t*& wsErrList) { if ( &wsErrList == nullptr) return FALSE ; string sErrList ; - bool bOk = ExeApplyAllMachinings( bStopOnFirstErr != FALSE, sErrList) ; + bool bOk = ExeApplyAllMachinings( bRecalc != FALSE, bStopOnFirstErr != FALSE, sErrList) ; wsErrList = _wcsdup( stringtoW( sErrList)) ; return ( ( bOk && wsErrList != nullptr) ? TRUE : FALSE) ; } diff --git a/EgtInterface.rc b/EgtInterface.rc index dd06ec7..285bb66 100644 Binary files a/EgtInterface.rc and b/EgtInterface.rc differ