Files
UnrealEngineUWP/Engine/Source/Runtime/SlateCore/Private/Children.cpp
patrick boutot c7ef0c6335 Slate: Force the initialization order for SNullWidget and FNoChildren.
#rb martin.sevigny

#ROBOMERGE-SOURCE: CL 16333561 in //UE5/Main/...
#ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v804-16311228)

[CL 16333566 by patrick boutot in ue5-release-engine-test branch]
2021-05-14 15:34:02 -04:00

16 lines
266 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Layout/Children.h"
#include "Widgets/SNullWidget.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
FNoChildren::FNoChildren()
: FChildren(&SNullWidget::NullWidget.Get())
{
}
PRAGMA_ENABLE_DEPRECATION_WARNINGS