Removed ccalc and replaced with MathParser

This commit is contained in:
Birunthan Mohanathas
2012-01-22 20:28:05 +00:00
parent f373ea0b1e
commit caf0a60a5b
18 changed files with 974 additions and 1403 deletions

View File

@ -1417,7 +1417,7 @@ void CMeterWindow::UpdateMeasure(const WCHAR* name, bool group)
// Pre-updates
if (!m_Measures.empty())
{
CMeasureCalc::UpdateVariableMap(*this);
CMeasureCalc::SetCurrentMeterWindow(this);
}
bool bNetStats = m_HasNetMeasures;
@ -2944,7 +2944,7 @@ void CMeterWindow::Update(bool nodraw)
CMeasureNet::UpdateIFTable();
CMeasureNet::UpdateStats();
}
CMeasureCalc::UpdateVariableMap(*this);
CMeasureCalc::SetCurrentMeterWindow(this);
// Update all measures
std::list<CMeasure*>::const_iterator i = m_Measures.begin();