From ac4fb19edc603b8c896d9c62648ebb657b25e0de Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Thu, 26 Mar 2009 18:31:23 +0000
Subject: [PATCH] *** empty log message ***

---
 Geo/Geo.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Geo/Geo.cpp b/Geo/Geo.cpp
index 238b56972f..212cbc89e3 100644
--- a/Geo/Geo.cpp
+++ b/Geo/Geo.cpp
@@ -910,8 +910,8 @@ static void CopySurface(Surface *s, Surface *ss, bool copyMeshingMethod)
     ss->Method = s->Method;
     ss->Recombine = s->Recombine;
     ss->RecombineAngle = s->RecombineAngle;
-    if(List_Nbr(s->TrsfPoints)) // TODO!
-      Msg::Error("Transfinite points not created during duplication");
+    if(List_Nbr(s->TrsfPoints))
+      Msg::Warning("Only automatic transfinite surface specifications can be copied");
   }
   ss->Generatrices = List_Create(List_Nbr(s->Generatrices), 1, sizeof(Curve *));
   List_Copy(s->Generatrices, ss->Generatrices);
@@ -939,8 +939,8 @@ static void CopyVolume(Volume *v, Volume *vv, bool copyMeshingMethod)
   vv->Typ = v->Typ;
   if(copyMeshingMethod){
     vv->Method = v->Method;
-    if(List_Nbr(v->TrsfPoints)) // TODO!
-      Msg::Error("Transfinite points not created during duplication");
+    if(List_Nbr(v->TrsfPoints))
+      Msg::Warning("Only automatic transfinite volume specifications can be copied");
   }
   List_Copy(v->Surfaces, vv->Surfaces);
   List_Copy(v->SurfacesOrientations, vv->SurfacesOrientations);
-- 
GitLab