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
@@ -693,7 +693,7 @@ MachMgr::GetMachiningGeometry( SELVECTOR& vIds) const
//----------------------------------------------------------------------------
bool
MachMgr::IsNotEmpty( void) const
MachMgr::IsEmpty( void) const
{
// recupero la lavorazione corrente
int nCurrMchId = GetCurrMachining() ;
@@ -704,5 +704,5 @@ MachMgr::IsNotEmpty( void) const
if ( pMch == nullptr)
return false ;
// restituisco lo stato
return pMch->IsNotEmpty() ;
return pMch->IsEmpty() ;
}