Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)

#rb none

[CL 6837840 by Chris Gagnon in Dev-Editor branch]
This commit is contained in:
Chris Gagnon
2019-06-04 15:16:30 -04:00
parent a1b1220bc6
commit 0a9f86357f
3948 changed files with 126996 additions and 48174 deletions

View File

@@ -202,7 +202,7 @@ void SModuleUI::UpdateModuleListItems()
{
FORCEINLINE bool operator()( const TSharedPtr<FModuleListItem>& A, const TSharedPtr<FModuleListItem>& B ) const
{
return A->ModuleName < B->ModuleName;
return A->ModuleName.LexicalLess(B->ModuleName);
}
};
ModuleListItems.Sort( FModuleSorter() );