EgtGraphics :

- ricompilazione.
This commit is contained in:
Dario Sassi
2014-08-19 20:22:57 +00:00
parent ea2df9655f
commit 46d0ad0e4b
+3 -3
View File
@@ -64,7 +64,7 @@ Scene::DrawGroup( int nId, int nPass, MdStMk cParent)
{
// creo un iteratore
PtrOwner<IGdbIterator> pIter( CreateGdbIterator( m_pGeomDB)) ;
if ( ! ::IsValid( pIter))
if ( IsNull( pIter))
return false ;
// recupero il gruppo
@@ -93,7 +93,7 @@ Scene::DrawGroup( const IGdbIterator& iIter, int nPass, MdStMk cParent)
}
// creo un iteratore
PtrOwner<IGdbIterator> pIter( CreateGdbIterator( m_pGeomDB)) ;
if ( ! ::IsValid( pIter))
if ( IsNull( pIter))
return false ;
// scandisco il gruppo
for ( bool bNext = pIter->GoToFirstInGroup( iIter) ;
@@ -300,7 +300,7 @@ Scene::DeleteObjGraphicsGroup( int nId)
{
// creo un iteratore
PtrOwner<IGdbIterator> pIter( CreateGdbIterator( m_pGeomDB)) ;
if ( ! ::IsValid( pIter))
if ( IsNull( pIter))
return false ;
// scandisco il gruppo
bool bNext = pIter->GoToFirstInGroup( nId) ;