From 1c0878b61815011946b0ac96bb6cd23fe14e8a2c Mon Sep 17 00:00:00 2001 From: Alexander Mueller <alexander.mueller@hs.uni-hamburg.de> Date: Wed, 21 Sep 2005 11:57:08 +0000 Subject: [PATCH] BugID: 393 Invokes the GCFProperty::setTimedValue direct instead of the GCFProperty::setValue. --- MAC/GCF/_PAL/PML/src/GCF_MyProperty.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MAC/GCF/_PAL/PML/src/GCF_MyProperty.cc b/MAC/GCF/_PAL/PML/src/GCF_MyProperty.cc index 42e4f488804..3b52b7b26f3 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); } } -- GitLab