//=========================================================================
void GPortModel::setValue( std::string value ) {
+
+ //Removing Colons JPRG
+ _parentBox->removeColons(value);
+
_value = value ;
if ( _value == "" ) {
_isValueSet = false ;
//=========================================================================
std::string GPortModel::getValue( ) {
- return _value ;
+ //JPRG::Adding Colons
+ std::string text = _value;
+ _parentBox->addColons(text);
+ return text;
+
}
//=========================================================================