Commit 833ead66 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander Trofimov

дополнение к Revision: 62534

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62540 954022d7-b5bf-4e40-9824-e11837661b57
parent 5c74cd87
......@@ -267,7 +267,13 @@ namespace SimpleTypes
else
{
m_bUnit = false;
m_dValue = XmlUtils::IsDigit(sValue.GetAt(0)) == false ? 0 : _wtof( sValue ) / dKoef;
try
{
m_dValue = _wtof( sValue ) / dKoef;
}
catch(...)
{
}
return;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment