]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkMessageManager.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkMessageManager.cxx
index eede31b5e0b7d244c1b01f41af6844283b7c8fb8..21b0e5332015914f74b3597bac089c611cec90ab 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkMessageManager.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/02/05 11:07:42 $
-  Version:   $Revision: 1.2 $
+  Date:      $Date: 2008/03/20 09:51:28 $
+  Version:   $Revision: 1.4 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -29,7 +29,7 @@ namespace bbtk
     
   {
     std::string key;
-    key ="Core";
+    key ="Kernel";
     mMessageLevel[key] = 0;
     mMessageHelp[key] = "Messages generated by the core classes of the lib";
     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
@@ -61,7 +61,7 @@ namespace bbtk
     mMessageLevel[key] = 0;
     mMessageHelp[key] = "Configuration related messages";
     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
-    key = "Data";
+    key = "data";
     mMessageLevel[key] = 0;
     mMessageHelp[key] = "Data related messages";
     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
@@ -69,7 +69,11 @@ namespace bbtk
     mMessageLevel[key] = 0;
     mMessageHelp[key] = "Widgets related messages";
     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
-  }
+    key = "gui";
+    mMessageLevel[key] = 0;
+    mMessageHelp[key] = "Graphical user interface related messages";
+    if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
+   }