Updating code to append a wchar_t instead of const wchar_t (#778)
This commit is contained in:
committed by
Matt Cooley
parent
4c81ed83c7
commit
01299a92cd
@@ -640,9 +640,9 @@ namespace CalculationManager
|
||||
if (pHistory)
|
||||
{
|
||||
pHistory->ClearHistory();
|
||||
for (unsigned int i = 0; i < history.size(); ++i)
|
||||
for (auto const& historyItem : history)
|
||||
{
|
||||
pHistory->AddItem(history[i]);
|
||||
pHistory->AddItem(historyItem);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user