From 081f1544fe50508feb3533a34146a6b7af8f410a Mon Sep 17 00:00:00 2001 From: Vladimir Alyamkin Date: Fri, 14 Jun 2019 10:14:04 +0300 Subject: [PATCH] Fix compilation for UE 4.20 and up --- Source/VaRestEditorPlugin/Private/VaRest_BreakJson.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/VaRestEditorPlugin/Private/VaRest_BreakJson.cpp b/Source/VaRestEditorPlugin/Private/VaRest_BreakJson.cpp index 7608db8d..1a14290f 100644 --- a/Source/VaRestEditorPlugin/Private/VaRest_BreakJson.cpp +++ b/Source/VaRestEditorPlugin/Private/VaRest_BreakJson.cpp @@ -594,7 +594,7 @@ void UVaRest_MakeJson::CreateProjectionPins(UEdGraphPin* Source) UEdGraphPin* InputPin = CreatePin(EGPD_Input, Type, TEXT(""), Subtype, FName(*(*it).Name), InputPinParams); #if ENGINE_MINOR_VERSION >= 20 - InputPin->SetSavePidfnIfOrphaned(false); + InputPin->SetSavePinIfOrphaned(false); #else InputPin->bSavePinIfOrphaned = false; #endif