From 9f7b59950afd2f180e4cb2f27aefa0ab6ace7b97 Mon Sep 17 00:00:00 2001 From: maintenance team Date: Fri, 7 Sep 2007 13:20:53 +0000 Subject: [PATCH] Correction for compilation on Windows --- src/DlgRef/DlgRef_2Sel1List1Check_QTD.h | 3 ++- src/GEOM_I/GEOM_IShapesOperations_i.cc | 8 ++++---- src/GEOM_I/GEOM_IShapesOperations_i.hh | 5 +++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/DlgRef/DlgRef_2Sel1List1Check_QTD.h b/src/DlgRef/DlgRef_2Sel1List1Check_QTD.h index 14e7875f8..8b636a8d9 100644 --- a/src/DlgRef/DlgRef_2Sel1List1Check_QTD.h +++ b/src/DlgRef/DlgRef_2Sel1List1Check_QTD.h @@ -28,6 +28,7 @@ #ifndef DLGREF_2SEL1LIST_QTD_H #define DLGREF_2SEL1LIST_QTD_H +#include "GEOM_DlgRef.hxx" #include #include 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 diff --git a/src/GEOM_I/GEOM_IShapesOperations_i.cc b/src/GEOM_I/GEOM_IShapesOperations_i.cc index 32dd0f023..6d9bf7fcc 100644 --- a/src/GEOM_I/GEOM_IShapesOperations_i.cc +++ b/src/GEOM_I/GEOM_IShapesOperations_i.cc @@ -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; diff --git a/src/GEOM_I/GEOM_IShapesOperations_i.hh b/src/GEOM_I/GEOM_IShapesOperations_i.hh index dc507db1c..de1b24be1 100644 --- a/src/GEOM_I/GEOM_IShapesOperations_i.hh +++ b/src/GEOM_I/GEOM_IShapesOperations_i.hh @@ -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,