Skip to content
Snippets Groups Projects
Commit 1c0878b6 authored by Alexander Mueller's avatar Alexander Mueller
Browse files

BugID: 393

Invokes the GCFProperty::setTimedValue direct instead of the GCFProperty::setValue.
parent e7b943f5
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment