Changed Registry measure to convert REG_SZ to a number (if applicable)

This commit is contained in:
Brian Ferguson 2012-08-23 10:20:45 -06:00
parent d2f2752000
commit a8dda05447

View File

@ -71,7 +71,7 @@ void CMeasureRegistry::UpdateValue()
case REG_SZ:
case REG_EXPAND_SZ:
case REG_MULTI_SZ:
m_Value = 0.0;
m_Value = wcstod(data, NULL);
m_StringValue = data;
break;