EgtGeomKernel 2.6h2 :

- modifiche per permettere Mark di tipo 2.
This commit is contained in:
Dario Sassi
2024-08-22 09:10:04 +02:00
parent 2b4090619b
commit 3908e11d18
9 changed files with 25 additions and 27 deletions
+2 -2
View File
@@ -2310,7 +2310,7 @@ GeomDB::GetCalcStatus( int nId, int& nStat) const
//----------------------------------------------------------------------------
bool
GeomDB::SetMark( int nId)
GeomDB::SetMark( int nId, int nMark)
{
// recupero l'oggetto
GdbObj* pGdbObj = GetGdbObj( nId) ;
@@ -2318,7 +2318,7 @@ GeomDB::SetMark( int nId)
return false ;
// imposto la marcatura
return pGdbObj->SetMark() ;
return pGdbObj->SetMark( nMark) ;
}
//----------------------------------------------------------------------------