]> Creatis software - bbtk.git/commitdiff
fix fixes
authorjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Thu, 14 Feb 2008 13:53:01 +0000 (13:53 +0000)
committerjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Thu, 14 Feb 2008 13:53:01 +0000 (13:53 +0000)
kernel/src/bbtkTranscriptor.cxx

index 419fbd5a1098040178e9b96071225eac6490dd9b..48fffe21e9617add10a461884607ef4f0406b558 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkTranscriptor.cxx,v $ $
   Language:  C++
-  Date:      $Date: 2008/02/14 13:48:13 $
-  Version:   $Revision: 1.2 $
+  Date:      $Date: 2008/02/14 13:53:01 $
+  Version:   $Revision: 1.3 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -240,7 +240,7 @@ namespace bbtk
                               const std::string& nodeName)
   {
     // Current()->Add(nodeType,nodeName);\"
-     m_Fp << "e->Add("\" << nodeType << "\", \"" <<  nodeName << "\");" << std::endl;
+     m_Fp << "e->Add(\"" << nodeType << "\", \"" <<  nodeName << "\");" << std::endl;
   }
 
 
@@ -277,13 +277,13 @@ namespace bbtk
         if (!mNoExecMode) 
         {
            //Current()->GetPrototype()->bbGetBlackBox(nodeName)->bbExecute(true);
-           m_Fp << "e->GetPrototype()->bbGetBlackBox("\" << nodeName << "\", true );" << std::endl;
+           m_Fp << "e->GetPrototype()->bbGetBlackBox(\"" << nodeName << "\", true );" << std::endl;
         }
      }
      else 
      {
         //Current()->AddToExecutionList(nodeName) ;
-       m_Fp << "e->AddToExecutionList("\" << nodeName << "\");" << std::endl;
+       m_Fp << "e->AddToExecutionList(\"" << nodeName << "\");" << std::endl;
      }
   }