From a07d3636a4dc48b41ed9a736dd03f90abbd265b4 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Mon, 6 Aug 2001 11:00:26 +0000
Subject: [PATCH] typos

---
 Plugin/CutMap.cpp         | 4 ++--
 Plugin/CutPlane.cpp       | 4 ++--
 Plugin/CutSphere.cpp      | 4 ++--
 Plugin/LevelsetPlugin.cpp | 6 ++----
 Plugin/Plugin.cpp         | 4 ++--
 Plugin/Skin.cpp           | 6 +++---
 Plugin/Transform.cpp      | 4 ++--
 7 files changed, 15 insertions(+), 17 deletions(-)

diff --git a/Plugin/CutMap.cpp b/Plugin/CutMap.cpp
index 993d14ac98..27569f7650 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 198ff3d237..f0d90b50fc 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 cb76ec4163..33a5354d11 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 a701760bb4..d30a380bce 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 45f948c81b..7cc36663ac 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 b5ee53fac3..4bf9d232ca 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 1dd55f120e..bc08ce70c5 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;
     }
   }
-- 
GitLab