Additional change to 40e0b70

This commit is contained in:
Birunthan Mohanathas 2013-11-05 21:19:04 +02:00
parent dcca59ae91
commit fa81ea4fe9

View File

@ -77,7 +77,6 @@ Measure::Measure(MeterWindow* meterWindow, const WCHAR* name) : Section(meterWin
m_MedianPos(), m_MedianPos(),
m_AveragePos(), m_AveragePos(),
m_AverageSize(), m_AverageSize(),
m_IfActions(meterWindow, this),
m_Disabled(false), m_Disabled(false),
m_Paused(false), m_Paused(false),
m_Initialized(false), m_Initialized(false),
@ -518,7 +517,7 @@ bool Measure::Update(bool rereadOptions)
if (m_MeterWindow) if (m_MeterWindow)
{ {
m_IfActions.DoIfActions(m_Value); m_IfActions.DoIfActions(*this, m_Value);
} }
return true; return true;