CTemplateListModel: Make use of push_back over operator<<

This commit is contained in:
Lioncash 2020-07-10 15:46:05 -04:00
parent 9393aa7a84
commit 8bc375f001
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public:
if (mpGame)
{
for (uint32 iTemp = 0; iTemp < mpGame->NumScriptTemplates(); iTemp++)
mTemplates << mpGame->TemplateByIndex(iTemp);
mTemplates.push_back(mpGame->TemplateByIndex(iTemp));
std::sort(mTemplates.begin(), mTemplates.end(), [](CScriptTemplate *pLeft, CScriptTemplate *pRight) -> bool {
return pLeft->Name() < pRight->Name();