// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved. #include "SkeletonTreeItem.h" #include "SSkeletonTreeRow.h" TSharedRef FSkeletonTreeItem::MakeTreeRowWidget(const TSharedRef& InOwnerTable, const TAttribute& InFilterText) { return SNew(SSkeletonTreeRow, InOwnerTable) .FilterText(InFilterText) .Item(SharedThis(this)); }