Hi!
In the project I’m working on, I do use a set of string tables stored in csv files. To retrieve a specific string, I’ve been using FromStringTable, as in the following code (UpdateMessage is a function I’ve defined):
myHUD->UpdateMessage(FText::FromStringTable("UIStrings", "Messages.Beast.Freed"));
So far, this has worked without any issue. However, after updating to 5.5.1, I get this compile error for every instance where I use that syntax:
error C2664: 'FText FText::FromStringTable(const FName,const FTextKey &,const EStringTableLoadingPolicy)': cannot convert argument 2 from 'const char [21]' to 'const FTextKey &'
note: Reason: cannot convert from 'const char [21]' to 'const FTextKey'
note: 'FTextKey::FTextKey': no overloaded function could convert all the argument types
Evidently the definition for FromStringTable has been updated; can anybody help me? What’s the best way to update my code in this regard?
Thanks in advance!