X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGEOM%2FGEOM_Solver.cxx;h=2e6475362eb7560f97cf761c4f84aa4de4230c74;hb=31b91717e01915431d5658a7054af18a7b7044d5;hp=81617026ceefe403363fb899ff64f60439a92eb3;hpb=7961b83044d771b15dbbe57ed71c20e67efec023;p=modules%2Fgeom.git diff --git a/src/GEOM/GEOM_Solver.cxx b/src/GEOM/GEOM_Solver.cxx index 81617026c..2e6475362 100644 --- a/src/GEOM/GEOM_Solver.cxx +++ b/src/GEOM/GEOM_Solver.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -56,15 +56,19 @@ bool GEOM_Solver::UpdateObject(Handle(GEOM_Object) theObject, TDF_LabelSequence& //============================================================================= bool GEOM_Solver::ComputeFunction(Handle(GEOM_Function) theFunction) { - if(theFunction == NULL) return false; + if(theFunction.IsNull()) return false; Standard_GUID aGUID = theFunction->GetDriverGUID(); Handle(TFunction_Driver) aDriver; if(!TFunction_DriverTable::Get()->FindDriver(aGUID, aDriver)) return false; aDriver->Init(theFunction->GetEntry()); - + +#if OCC_VERSION_MAJOR < 7 TFunction_Logbook aLog; +#else + Handle(TFunction_Logbook) aLog = TFunction_Logbook::Set( aDriver->Label() ); +#endif if(aDriver->Execute(aLog) == 0) return false; return true;