diff --git a/MAC/GCF/_PAL/PML/src/GCF_MyProperty.cc b/MAC/GCF/_PAL/PML/src/GCF_MyProperty.cc index 42e4f488804d04ea6beb5531762336bdf43287a9..3b52b7b26f34d07164ad87cd852d8ab28893734f 100644 --- a/MAC/GCF/_PAL/PML/src/GCF_MyProperty.cc +++ b/MAC/GCF/_PAL/PML/src/GCF_MyProperty.cc @@ -139,7 +139,7 @@ bool GCFMyProperty::link(bool setDefault, TGCFResult& result) if (_accessMode & GCF_READABLE_PROP && setDefault) { ASSERT(_pCurValue); - result = GCFProperty::setValue(*_pCurValue); + result = GCFProperty::setValueTimed(*_pCurValue, 0.0); } if (_accessMode & GCF_WRITABLE_PROP && result == GCF_NO_ERROR) { @@ -206,7 +206,7 @@ void GCFMyProperty::setAccessMode(TAccessMode mode, bool on) _isLinked) { ASSERT(_pCurValue); - result = GCFProperty::setValue(*_pCurValue); + result = GCFProperty::setValueTimed(*_pCurValue, 0.0); ASSERT(result == GCF_NO_ERROR); } }