diff --git a/Plugin/CutMap.cpp b/Plugin/CutMap.cpp index 993d14ac9805802fd26f7d93407b5f645c6d7755..27569f765042588dae89f7e5301bff0d325bad65 100644 --- a/Plugin/CutMap.cpp +++ b/Plugin/CutMap.cpp @@ -1,4 +1,4 @@ -// $Id: CutMap.cpp,v 1.17 2001-08-06 10:52:52 geuzaine Exp $ +// $Id: CutMap.cpp,v 1.18 2001-08-06 11:00:26 geuzaine Exp $ #include "CutMap.h" #include "List.h" @@ -73,7 +73,7 @@ Post_View *GMSH_CutMapPlugin::execute (Post_View *v) else{ if(!v && iView < 0) iView = 0; if(!(vv = (Post_View*)List_Pointer_Test(Post_ViewList,iView))){ - Msg(WARNING,"Plugin CutMap: View[%d] does not exist",iView); + Msg(WARNING,"View[%d] does not exist",iView); return 0; } } diff --git a/Plugin/CutPlane.cpp b/Plugin/CutPlane.cpp index 198ff3d237f4dbee4f9400e66f9fb0370dde0ed8..f0d90b50fc65bee083a450ecc8b12272d57699fc 100644 --- a/Plugin/CutPlane.cpp +++ b/Plugin/CutPlane.cpp @@ -1,4 +1,4 @@ -// $Id: CutPlane.cpp,v 1.15 2001-08-06 10:52:52 geuzaine Exp $ +// $Id: CutPlane.cpp,v 1.16 2001-08-06 11:00:26 geuzaine Exp $ #include "CutPlane.h" #include "List.h" @@ -79,7 +79,7 @@ Post_View *GMSH_CutPlanePlugin::execute (Post_View *v) else{ if(!v && iView < 0) iView = 0; if(!(vv = (Post_View*)List_Pointer_Test(Post_ViewList,iView))){ - Msg(WARNING,"Plugin CutPlane: View[%d] does not exist",iView); + Msg(WARNING,"View[%d] does not exist",iView); return 0; } } diff --git a/Plugin/CutSphere.cpp b/Plugin/CutSphere.cpp index cb76ec4163e13d4071e6044f80c30c61235613b8..33a5354d11d4fa2538d5e9863eb5bcbdab425463 100644 --- a/Plugin/CutSphere.cpp +++ b/Plugin/CutSphere.cpp @@ -1,4 +1,4 @@ -// $Id: CutSphere.cpp,v 1.14 2001-08-06 10:52:52 geuzaine Exp $ +// $Id: CutSphere.cpp,v 1.15 2001-08-06 11:00:26 geuzaine Exp $ #include <string.h> #include "CutSphere.h" @@ -80,7 +80,7 @@ Post_View *GMSH_CutSpherePlugin::execute (Post_View *v) else{ if(!v && iView < 0) iView = 0; if(!(vv = (Post_View*)List_Pointer_Test(Post_ViewList,iView))){ - Msg(WARNING,"Plugin CutSphere: View[%d] does not exist",iView); + Msg(WARNING,"View[%d] does not exist",iView); return 0; } } diff --git a/Plugin/LevelsetPlugin.cpp b/Plugin/LevelsetPlugin.cpp index a701760bb4a9c46324f6eaaa2db0b190955a86b5..d30a380bce35b141b6edf8f171d236bc2bd501e1 100644 --- a/Plugin/LevelsetPlugin.cpp +++ b/Plugin/LevelsetPlugin.cpp @@ -1,4 +1,4 @@ -// $Id: LevelsetPlugin.cpp,v 1.10 2001-08-06 10:35:47 geuzaine Exp $ +// $Id: LevelsetPlugin.cpp,v 1.11 2001-08-06 11:00:26 geuzaine Exp $ #include "LevelsetPlugin.h" #include "List.h" @@ -97,13 +97,11 @@ Post_View *GMSH_LevelsetPlugin::execute (Post_View *v) sprintf(filename,"cut-%s",v->FileName); EndView(1, filename, name); - Msg(INFO, "Levelset: created view '%s' (%d triangles)", name, View->NbST); + Msg(INFO, "Created view '%s' (%d triangles)", name, View->NbST); processed = View; return View; } - Msg(INFO, "Levelset plugin: nothing to do"); - return 0; } diff --git a/Plugin/Plugin.cpp b/Plugin/Plugin.cpp index 45f948c81b59fded607bf5e74cad9c4577bdac32..7cc36663acddd695f224c5ef682b13756dce19f6 100644 --- a/Plugin/Plugin.cpp +++ b/Plugin/Plugin.cpp @@ -1,4 +1,4 @@ -// $Id: Plugin.cpp,v 1.18 2001-08-06 08:09:51 geuzaine Exp $ +// $Id: Plugin.cpp,v 1.19 2001-08-06 11:00:26 geuzaine Exp $ #ifndef _NODLL #include <dlfcn.h> @@ -146,7 +146,7 @@ void GMSH_PluginManager::AddPlugin( char *dirName, char *pluginName){ char plugin_help[256]; class GMSH_Plugin* (*RegisterPlugin)(void); sprintf(dynamic_lib,"%s%s%s",dirName,SLASH,pluginName); - Msg(INFO,"Opening Plugin %s",dynamic_lib); + Msg(INFO,"Opening Plugin '%s'",dynamic_lib); void *hlib = dlopen (dynamic_lib,RTLD_NOW); char *err = dlerror(); if(hlib == NULL){ diff --git a/Plugin/Skin.cpp b/Plugin/Skin.cpp index b5ee53fac365c1bc929fee476f573d679bb16c4e..4bf9d232ca49837f0f8f6d1787ed8e8a362276d1 100644 --- a/Plugin/Skin.cpp +++ b/Plugin/Skin.cpp @@ -1,4 +1,4 @@ -// $Id: Skin.cpp,v 1.4 2001-08-06 10:52:52 geuzaine Exp $ +// $Id: Skin.cpp,v 1.5 2001-08-06 11:00:26 geuzaine Exp $ #include "Plugin.h" #include "Skin.h" @@ -120,7 +120,7 @@ Post_View *GMSH_SkinPlugin::execute (Post_View *v) else{ if(!v && iView < 0) iView = 0; if(!(vv = (Post_View*)List_Pointer_Test(Post_ViewList,iView))){ - Msg(WARNING,"Plugin Skin: View[%d] does not exist",iView); + Msg(WARNING,"View[%d] does not exist",iView); return 0; } } @@ -150,7 +150,7 @@ Post_View *GMSH_SkinPlugin::execute (Post_View *v) sprintf(name,"skin-%s",vv->Name); sprintf(filename,"skin-%s",vv->FileName); EndView(1, filename, name); - Msg(INFO, "Skin: created view '%s' (%d triangles)", name, View->NbST); + Msg(INFO, "Created view '%s' (%d triangles)", name, View->NbST); return View; } diff --git a/Plugin/Transform.cpp b/Plugin/Transform.cpp index 1dd55f120e4c50b810ccf242264b9abdd5531926..bc08ce70c56d8ea4e1f611a07887cda76a09194d 100644 --- a/Plugin/Transform.cpp +++ b/Plugin/Transform.cpp @@ -1,4 +1,4 @@ -// $Id: Transform.cpp,v 1.4 2001-08-06 10:52:52 geuzaine Exp $ +// $Id: Transform.cpp,v 1.5 2001-08-06 11:00:26 geuzaine Exp $ #include "Plugin.h" #include "Transform.h" @@ -98,7 +98,7 @@ Post_View *GMSH_TransformPlugin::execute (Post_View *v) else{ if(!v && iView < 0) iView = 0; if(!(vv = (Post_View*)List_Pointer_Test(Post_ViewList,iView))){ - Msg(WARNING,"Plugin Transform: View[%d] does not exist",iView); + Msg(WARNING,"View[%d] does not exist",iView); return 0; } }