Alexhas2's picture
Add files using upload-large-folder tool
b315adb verified
Raw
History Blame Contribute Delete
351 Bytes
// 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);
}