File size: 351 Bytes
b315adb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | // Copyright Epic Games, Inc. All Rights Reserved.
#include "Widgets/Misc/KeyAlreadyBoundWarning.h"
#include "Components/TextBlock.h"
void UKeyAlreadyBoundWarning::SetWarningText(const FText& InText)
{
WarningText->SetText(InText);
}
void UKeyAlreadyBoundWarning::SetCancelText(const FText& InText)
{
CancelText->SetText(InText);
}
|