]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Correction for compilation on Windows V4_1_0a1
authormaintenance team <salome-mnt@opencascade.com>
Fri, 7 Sep 2007 13:20:53 +0000 (13:20 +0000)
committermaintenance team <salome-mnt@opencascade.com>
Fri, 7 Sep 2007 13:20:53 +0000 (13:20 +0000)
src/DlgRef/DlgRef_2Sel1List1Check_QTD.h
src/GEOM_I/GEOM_IShapesOperations_i.cc
src/GEOM_I/GEOM_IShapesOperations_i.hh

index 14e7875f841d55ae39eaf981c627691e03289f41..8b636a8d9c74cd6529ab6dec0eb1406a0468d405 100644 (file)
@@ -28,6 +28,7 @@
 #ifndef DLGREF_2SEL1LIST_QTD_H
 #define DLGREF_2SEL1LIST_QTD_H
 
+#include "GEOM_DlgRef.hxx"
 #include <qvariant.h>
 #include <qwidget.h>
 class QVBoxLayout; 
@@ -40,7 +41,7 @@ class QLineEdit;
 class QPushButton;
 class QRadioButton;
 
-class DlgRef_2Sel1List1Check_QTD : public QWidget
+class GEOM_DLGREF_EXPORT DlgRef_2Sel1List1Check_QTD : public QWidget
 { 
     Q_OBJECT
 
index 32dd0f0236dd5498b79ef4ea19e026269cf48615..6d9bf7fcc7a6ef351c2438d21f763e05a17e5d8a 100644 (file)
@@ -328,8 +328,8 @@ GEOM::GEOM_Object_ptr GEOM_IShapesOperations_i::MakeCompound
 //=============================================================================
 GEOM::GEOM_Object_ptr GEOM_IShapesOperations_i::MakeGlueFaces
                                            (GEOM::GEOM_Object_ptr theShape,
-                                           const CORBA::Double   theTolerance,
-                                           const CORBA::Boolean  doKeepNonSolids)
+                                           CORBA::Double   theTolerance,
+                                           CORBA::Boolean  doKeepNonSolids)
 {
   GEOM::GEOM_Object_var aGEOMObject;
 
@@ -401,9 +401,9 @@ GEOM::ListOfGO* GEOM_IShapesOperations_i::GetGlueFaces
 //=============================================================================
 GEOM::GEOM_Object_ptr GEOM_IShapesOperations_i::MakeGlueFacesByList
                                            (GEOM::GEOM_Object_ptr theShape,
-                                           const CORBA::Double   theTolerance,
+                                           CORBA::Double   theTolerance,
                                            const GEOM::ListOfGO& theFaces,
-                                           const CORBA::Boolean  doKeepNonSolids)
+                                           CORBA::Boolean  doKeepNonSolids)
 {
   GEOM::GEOM_Object_var aGEOMObject;
 
index dc507db1c437411a448c5e9640e620abce2c71e7..de1b24be14b8895552248132c61bb1d9ef43b283 100644 (file)
@@ -62,7 +62,7 @@ class GEOM_I_EXPORT GEOM_IShapesOperations_i :
 
   GEOM::GEOM_Object_ptr MakeGlueFaces (GEOM::GEOM_Object_ptr theShape,
                                       CORBA::Double         theTolerance,
-                                      const CORBA::Boolean  doKeepNonSolids);
+                                          CORBA::Boolean  doKeepNonSolids);
 
   GEOM::ListOfGO* GetGlueFaces (GEOM::GEOM_Object_ptr theShape,
                                CORBA::Double         theTolerance);
@@ -70,7 +70,8 @@ class GEOM_I_EXPORT GEOM_IShapesOperations_i :
   GEOM::GEOM_Object_ptr MakeGlueFacesByList (GEOM::GEOM_Object_ptr theShape,
                                             CORBA::Double         theTolerance,
                                             const GEOM::ListOfGO& theFaces,
-                                            const CORBA::Boolean  doKeepNonSolids);
+                                                CORBA::Boolean  doKeepNonSolids);
+
 
   GEOM::ListOfGO* MakeExplode (GEOM::GEOM_Object_ptr theShape,
                               CORBA::Long           theShapeType,