EgtMachKernel 1.6n2 :

- la funzione IsNotEmpty è stata sostituita dalla IsEmpty.
This commit is contained in:
Dario Sassi
2016-02-09 09:49:26 +00:00
parent 6cfdb4d22b
commit 63f3492566
10 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -534,7 +534,7 @@ Machining::CalculateAxesValues( void)
int nPrevOpId = m_pMchMgr->GetPrevActiveOperation( m_nOwnerId) ;
Machining* pPrevMch = dynamic_cast<Machining*>( m_pGeomDB->GetUserObj( nPrevOpId)) ;
while ( pPrevMch != nullptr) {
if ( pPrevMch->IsNotEmpty())
if ( ! pPrevMch->IsEmpty())
break ;
else {
nPrevOpId = m_pMchMgr->GetPrevActiveOperation( nPrevOpId) ;
@@ -703,7 +703,7 @@ Machining::AdjustStartEndMovements(void)
int nPrevOpId = m_pMchMgr->GetPrevActiveOperation( m_nOwnerId) ;
Machining* pPrevMch = dynamic_cast<Machining*>( m_pGeomDB->GetUserObj( nPrevOpId)) ;
while ( pPrevMch != nullptr) {
if ( pPrevMch->IsNotEmpty())
if ( ! pPrevMch->IsEmpty())
break ;
else {
nPrevOpId = m_pMchMgr->GetPrevActiveOperation( nPrevOpId) ;