EgtExecutor 1.6n2 :

- sostuite Exe e Lua IsMachiningNotEmpty con IsMachiningEmpty.
This commit is contained in:
Dario Sassi
2016-02-09 09:52:47 +00:00
parent 906ecb1fe2
commit 52bdabb7ea
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -1295,12 +1295,12 @@ ExeGetMachiningGeometry( SELVECTOR& vIds)
//-----------------------------------------------------------------------------
bool
ExeIsMachiningNotEmpty( void)
ExeIsMachiningEmpty( void)
{
GseContext* pGseCtx = GetCurrGseContext() ;
VERIFY_CTX_MACHMGR( pGseCtx, false)
// restituisco lo stato della lavorazione corrente
return pGseCtx->m_pMachMgr->IsNotEmpty() ;
return pGseCtx->m_pMachMgr->IsEmpty() ;
}
//-----------------------------------------------------------------------------