]> Creatis software - bbtkGEditor.git/commitdiff
v1.1.0
authordavila <>
Fri, 1 Jun 2012 08:39:52 +0000 (08:39 +0000)
committerdavila <>
Fri, 1 Jun 2012 08:39:52 +0000 (08:39 +0000)
 - Bug: Add/Remove Colons

lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.cxx
lib/EditorGraphicBBS/bbsKernelEditorGraphic/GPortModel.cxx

index 704ca1efb7d0c8b44b7f65a00ddbfc5a4290093a..7eb35180731366b3fb4463de71192b919f300561 100644 (file)
@@ -178,7 +178,6 @@ namespace bbtk
        std::string GBlackBoxModel::getValueInputPort(int pos)
        {
                std::string text = _inputs[pos]->getValue();
-               addColons(text);
                return text;
        }
 
index def04b12c6405aaa1fa283a33fa21d045aa4fbae..5e307213c78ce2599e5a5b88bf38c9a1ad828528 100644 (file)
@@ -146,6 +146,10 @@ namespace bbtk {
     //=========================================================================
 
     void GPortModel::setValue( std::string value ) {
+
+               //Removing Colons JPRG
+               _parentBox->removeColons(value);
+               
         _value = value ;
         if ( _value == "" ) {
             _isValueSet = false ;
@@ -158,7 +162,11 @@ namespace bbtk {
     //=========================================================================
 
     std::string GPortModel::getValue( ) {
-        return _value ;
+               //JPRG::Adding Colons
+               std::string text = _value;
+               _parentBox->addColons(text);
+               return text;
+               
     }
 
     //=========================================================================