]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkExecuter.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkExecuter.cxx
index 67e4788268b216a4975a899b7403ee8b49d52e44..ee60d2e992e98ea035c9615581be167c7e39777b 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkExecuter.cxx,v $ $
   Language:  C++
-  Date:      $Date: 2008/04/18 12:59:15 $
-  Version:   $Revision: 1.18 $
+  Date:      $Date: 2008/04/22 06:59:31 $
+  Version:   $Revision: 1.19 $
 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -250,21 +250,21 @@ namespace bbtk
        Current()->AddToCategory("adaptor");
        Current()->SetKind(bbtk::BlackBoxDescriptor::DEFAULT_ADAPTOR);
       }
-    if (kind=="WIDGET_ADAPTOR")
+    if (kind=="GUI")
       {
-       Current()->AddToCategory("adaptor");
-       Current()->SetKind(bbtk::BlackBoxDescriptor::WIDGET_ADAPTOR);
+       Current()->AddToCategory("gui");
+       Current()->SetKind(bbtk::BlackBoxDescriptor::GUI);
       }
-    else if (kind=="DEFAULT_WIDGET_ADAPTOR")
+    else if (kind=="DEFAULT_GUI")
       {
-       Current()->AddToCategory("adaptor");
-       Current()->SetKind(bbtk::BlackBoxDescriptor::DEFAULT_WIDGET_ADAPTOR);
+       Current()->AddToCategory("gui");
+       Current()->SetKind(bbtk::BlackBoxDescriptor::DEFAULT_GUI);
       }
     else
       {
        bbtkError("Unknown box kind : '"<<kind<<"'. "
                  <<"Valid kinds are 'ADAPTOR','DEFAULT_ADAPTOR',"
-                 <<"'WIDGET_ADAPTOR','DEFAULT_WIDGET_ADAPTOR'");
+                 <<"'GUI','DEFAULT_GUI'");
       }
   }
   //=======================================================================