Files
UnrealEngineUWP/Engine/Source/Runtime/UMG/Private/Components/ScrollBoxComponent.cpp

23 lines
478 B
C++
Raw Normal View History

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "UMGPrivatePCH.h"
#define LOCTEXT_NAMESPACE "UMG"
/////////////////////////////////////////////////////
// UScrollBoxComponent
UScrollBoxComponent::UScrollBoxComponent(const FPostConstructInitializeProperties& PCIP)
: Super(PCIP)
{
}
TSharedRef<SWidget> UScrollBoxComponent::RebuildWidget()
{
return SNew(SScrollBox);
}
/////////////////////////////////////////////////////
#undef LOCTEXT_NAMESPACE