EgtMachKernel 2.7g3 :
- corretto IsEmpty per Disposition con ClPath vuoto per contenere solo comandi ausiliari.
This commit is contained in:
+7
-1
@@ -74,7 +74,13 @@ class Disposition : public Operation
|
||||
int GetType( void) const override
|
||||
{ return OPER_DISP ; }
|
||||
bool IsEmpty( int nEmptyType = NEED_GEOM) const override
|
||||
{ return ( m_nShifts == 0) ; }
|
||||
{ if ( m_nShifts == 0)
|
||||
return true ;
|
||||
if ( nEmptyType == NEED_ONE_TP_OK)
|
||||
return ( ! IsAtLeastOnePathOk()) ;
|
||||
if ( nEmptyType == NEED_ALL_TP_OK)
|
||||
return ( ! AreAllPathsOk()) ;
|
||||
return false ; }
|
||||
bool UpdateStatus( int nModif) override
|
||||
{ m_nStatus |= nModif ; return true ; }
|
||||
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user