yet even more GetChars calls added.
This commit is contained in:
parent
c94c63110e
commit
7a5a2858a2
46 changed files with 190 additions and 190 deletions
|
|
@ -1145,7 +1145,7 @@ FSerializer &Serialize(FSerializer &arc, const char *key, FTextureID &value, FTe
|
|||
}
|
||||
else
|
||||
{
|
||||
name = pic->GetName();
|
||||
name = pic->GetName().GetChars();
|
||||
}
|
||||
arc.WriteKey(key);
|
||||
arc.w->StartArray();
|
||||
|
|
@ -1507,8 +1507,8 @@ FString DictionaryToString(const Dictionary &dict)
|
|||
|
||||
while (i.NextPair(pair))
|
||||
{
|
||||
writer.Key(pair->Key);
|
||||
writer.String(pair->Value);
|
||||
writer.Key(pair->Key.GetChars());
|
||||
writer.String(pair->Value.GetChars());
|
||||
}
|
||||
|
||||
writer.EndObject();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue