Salome HOME
updated copyright message
[modules/geom.git] / src / MeasureGUI / MeasureGUI_FastCheckIntersectionsDlg.cxx
index 2e70227670463efa99b4520f7e953eedf668036d..6a72250fb249e7d5d339fb552b18781b5ced67b6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -252,7 +252,7 @@ void MeasureGUI_FastCheckIntersectionsDlg::onCompute()
     TopExp::MapShapes(aSelShape2, anIndices2);
 
     //Sub-shapes of 1st Object
-    for (int i = 0; i < myInters1->length(); i++) {
+    for (int i = 0; i < (int)myInters1->length(); i++) {
       TopoDS_Shape aSubShape = anIndices1.FindKey(myInters1[i]);
       QString aType = GEOMBase::GetShapeTypeString(aSubShape);
       if (!aType.isEmpty())
@@ -262,7 +262,7 @@ void MeasureGUI_FastCheckIntersectionsDlg::onCompute()
     myShapeList1->selectAll();
 
     //Sub-shapes of second Object
-    for (int i = 0; i < myInters2->length(); i++) {
+    for (int i = 0; i < (int)myInters2->length(); i++) {
       TopoDS_Shape aSubShape = anIndices2.FindKey(myInters2[i]);
       QString aType = GEOMBase::GetShapeTypeString(aSubShape);
       if (!aType.isEmpty())
@@ -360,7 +360,7 @@ bool MeasureGUI_FastCheckIntersectionsDlg::extractPrefix() const
 //=================================================================================
 GEOM::GEOM_IOperations_ptr MeasureGUI_FastCheckIntersectionsDlg::createOperation()
 {
-  return getGeomEngine()->GetIMeasureOperations( getStudyId() );
+  return getGeomEngine()->GetIMeasureOperations();
 }
 
 //=================================================================================
@@ -475,7 +475,7 @@ bool MeasureGUI_FastCheckIntersectionsDlg::findIntersections()
     GEOM::GEOM_IMeasureOperations::_narrow(getOperation());
   bool isOK = true;
 
-  bool HasInte;
+  bool HasInte = false;
   try {
     HasInte = anOper->FastIntersect(myObj1.get(), myObj2.get(), getTolerance(), getDeflection(), myInters1, myInters2);
   }
@@ -611,7 +611,7 @@ GEOM::ListOfGO_var MeasureGUI_FastCheckIntersectionsDlg::getLstObjFromListSelect
   }
 
   if (myShapesOper->_is_nil())
-    myShapesOper = getGeomEngine()->GetIShapesOperations(getStudyId());
+    myShapesOper = getGeomEngine()->GetIShapesOperations();
 
   GEOM::ListOfGO_var aObjLstCreate = myShapesOper->MakeSubShapes(anObj.get(), anArray);
 
@@ -623,7 +623,7 @@ GEOM::ListOfGO_var MeasureGUI_FastCheckIntersectionsDlg::getLstObjFromListSelect
   for (i=0, anIter = aObjLstExist.begin(); anIter != aObjLstExist.end(); i++, ++anIter) {
     anObjLst[i] = *anIter;
   }
-  for (int j = 0; j < aObjLstCreate->length(); j++) {
+  for (int j = 0; j < (int)aObjLstCreate->length(); j++) {
     anObjLst[aObjLstExist.size()+j]=aObjLstCreate[j];
   }
   return  anObjLst._retn();
@@ -645,11 +645,11 @@ bool MeasureGUI_FastCheckIntersectionsDlg::execute(ObjectList& objects)
   //Collect general intersection list
   aCompList->length(nbObj);
   int i;
-  for (i = 0; i < aList1->length(); i++) {
+  for (i = 0; i < (int)aList1->length(); i++) {
     GEOMBase::PublishSubObject( aList1[i] );
     aCompList[i]=aList1[i];
   }
-  for (int j = 0; j < aList2->length(); j++) {
+  for (int j = 0; j < (int)aList2->length(); j++) {
     GEOMBase::PublishSubObject( aList2[j] );
     aCompList[i+j]=aList2[j];
   }