]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Porting to CAS-6.3
authormaintenance team <salome-mnt@opencascade.com>
Fri, 12 Sep 2008 10:13:14 +0000 (10:13 +0000)
committermaintenance team <salome-mnt@opencascade.com>
Fri, 12 Sep 2008 10:13:14 +0000 (10:13 +0000)
src/GEOM/GEOM_Engine.cxx
src/GEOM/GEOM_IOperations.hxx
src/GEOM/GEOM_Object.cxx

index a55f32fd4852c41406cc9dc6939863ae074f0f12..5693abcebe0a1d7ba7d755acff8f016605beb9bc 100644 (file)
@@ -716,7 +716,7 @@ Handle(TColStd_HSequenceOfInteger) FindEntries(TCollection_AsciiString& theStrin
   Standard_Integer aLen = theString.Length();
   Standard_Boolean isFound = Standard_False;
 
-  char* arr = theString.ToCString();
+  const char* arr = theString.ToCString();
   Standard_Integer i = 0, j;
 
   while(i < aLen) {
index 67781992d1609c1e08380024a64ce0f5f62b09c7..1334adeaf14517c0d23cf1772a3a8b9cce12d1e0 100644 (file)
@@ -62,7 +62,7 @@ class GEOM_IOperations
  
   //Returns an error code of the last operatioin
   Standard_EXPORT char* GetErrorCode() {
-    return _errorCode.ToCString();    
+    return (char*) _errorCode.ToCString();    
   }
   
   //Returns a pointer to  GEOM_Engine which this operation interface is associated
index 6d5174d4d1245b31f7d14f888cbc973e8e103e26..4a33133336deffc91f0a7948b6e4e1d313ba6a1c 100644 (file)
@@ -88,7 +88,9 @@ Handle(GEOM_Object) GEOM_Object::GetObject(TDF_Label& theLabel)
 
   GEOM_Engine* anEngine=  GEOM_Engine::GetEngine();
   if(anEngine == NULL) return NULL;
-  return anEngine->GetObject(anID->Get(), anEntry.ToCString());
+  return anEngine->GetObject(anID->Get(), (char*) anEntry.ToCString());
+
+
 }
 
 //=============================================================================