Fixed: IfActions not fired when measure is disabled

This commit is contained in:
Birunthan Mohanathas
2012-05-30 09:46:11 +03:00
parent 8fb0be30d4
commit 9623766a61
32 changed files with 125 additions and 214 deletions

View File

@ -41,11 +41,9 @@ CMeasureNetIn::~CMeasureNetIn()
** Updates the current net in value.
**
*/
bool CMeasureNetIn::Update()
void CMeasureNetIn::UpdateValue()
{
if (!CMeasureNet::PreUpdate()) return false;
if (c_Table == NULL) return false;
if (c_Table == NULL) return;
if (m_Cumulative)
{
@ -78,8 +76,6 @@ bool CMeasureNetIn::Update()
m_Value = (double)(__int64)value;
}
return PostUpdate();
}
/*