Updating code to append a wchar_t instead of const wchar_t (#778)

This commit is contained in:
Scott Freeman 2019-11-11 12:23:34 -05:00 committed by Matt Cooley
commit 01299a92cd
8 changed files with 27 additions and 30 deletions

View file

@ -179,7 +179,7 @@ bool CalcInput::TryAddDecimalPt()
if (m_base.IsEmpty())
{
m_base.value += L"0"; // Add a leading zero
m_base.value += L'0'; // Add a leading zero
}
m_decPtIndex = m_base.value.size();