Salome HOME
Fix copy/paste error and some minor changes
authoreap <eap@opencascade.com>
Tue, 18 Feb 2014 13:11:35 +0000 (17:11 +0400)
committereap <eap@opencascade.com>
Tue, 18 Feb 2014 13:11:35 +0000 (17:11 +0400)
src/GEOMImpl/GEOMImpl_IPartition.hxx
src/GEOMImpl/GEOMImpl_IShapesOperations.cxx

index d1267634e169b7aa54d7c166c5f8413c1d0bc7ac..105ff257d647035342149e86ee2b86fea790a0a6 100644 (file)
@@ -39,7 +39,7 @@
 #define PART_ARG_PLANE 8
 
 #define PART_ARG_KEEP_NONLIMIT_SHAPES 9
-#define BOOL_ARG_CHECK_SELF_INTERSECTION 10
+#define PART_ARG_CHECK_SELF_INTERSECTION 10
 
 class GEOMImpl_IPartition
 {
@@ -68,7 +68,7 @@ class GEOMImpl_IPartition
   { _func->SetIntegerArray(PART_ARG_MATERIALS, theMaterials); }
 
   void SetCheckSelfIntersection (Standard_Boolean theFlag)
-  { _func->SetInteger(BOOL_ARG_CHECK_SELF_INTERSECTION, theFlag ? 1 : 0); }
+  { _func->SetInteger(PART_ARG_CHECK_SELF_INTERSECTION, theFlag ? 1 : 0); }
 
   int GetLimit() { return _func->GetInteger(PART_ARG_LIMIT); }
 
@@ -89,7 +89,7 @@ class GEOMImpl_IPartition
   Handle(GEOM_Function) GetPlane() { return _func->GetReference(PART_ARG_PLANE); }
 
   Standard_Boolean GetCheckSelfIntersection()
-  { return (_func->GetInteger(BOOL_ARG_CHECK_SELF_INTERSECTION) != 0); }
+  { return (_func->GetInteger(PART_ARG_CHECK_SELF_INTERSECTION) != 0); }
 
  private:
 
index 05b67b46e3a06e0c834bc82dc4d2d68576dccd9c..6eae2bda66609fd6f3247489414be8f69ee291fd 100644 (file)
@@ -42,7 +42,7 @@
 #include "GEOMImpl_Block6Explorer.hxx"
 #include "GEOMImpl_IHealingOperations.hxx"
 
-#include <GEOMImpl_Gen.hxx>
+#include "GEOMImpl_Gen.hxx"
 
 #include "GEOM_Function.hxx"
 #include "GEOM_ISubShape.hxx"
@@ -63,9 +63,9 @@
 
 #include <Basics_OCCTVersion.hxx>
 
-#include "utilities.h"
-#include "OpUtil.hxx"
-#include "Utils_ExceptHandlers.hxx"
+#include <utilities.h>
+#include <OpUtil.hxx>
+#include <Utils_ExceptHandlers.hxx>
 
 #include <TFunction_DriverTable.hxx>
 #include <TFunction_Driver.hxx>