LOCTEXT undeclared identifier

‘L’: undeclared identifier
error C2143: syntax error: missing ‘)’ before ‘;’
‘FInternationalization::ForUseOnlyByLocMacroAndGraphNodeTextLiterals_CreateText’: function does not take 2 arguments

#define LOCTEXT_NAMESPACE "UMG"
#if WITH_EDITOR
const FText UStyledButton::GetPaletteCategory() {
  return LOCTEXT("Custom", "Custom");
}
#endif
#undef LOCTEXT_NAMESPACE

I don’t understand what I’m doing wrong? What is the problem with LOCTEXT?

Apparently you have to put the LOCTEXT_NAMESPACE macro inside the #if WITH_EDITOR…

#if WITH_EDITOR
#define LOCTEXT_NAMESPACE "UMG"
const FText UStyledButton::GetPaletteCategory()
{
	return LOCTEXT("Custom", "Custom");
	//return FInternationalization::ForUseOnlyByLocMacroAndGraphNodeTextLiterals_CreateText(TEXT("Custom"), TEXT("UMG"), TEXT("Custom"));
}
#undef LOCTEXT_NAMESPACE
#endif
3 Likes