mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-19 12:59:30 -07:00
Updating code to append a wchar_t instead of const wchar_t (#778)
This commit is contained in:
parent
4c81ed83c7
commit
01299a92cd
8 changed files with 27 additions and 30 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue