Copying //UE4/Dev-Core to Dev-Main (//UE4/Dev-Main)

#rb none

#ROBOMERGE-OWNER: ben.marsh
#ROBOMERGE-AUTHOR: stefan.boberg
#ROBOMERGE-SOURCE: CL 6815521 in //UE4/Main/...
#ROBOMERGE-BOT: BUILD (Main -> Dev-Build) (v365-6733468)

[CL 6821265 by stefan boberg in Dev-Build branch]
This commit is contained in:
stefan boberg
2019-06-03 19:09:16 -04:00
parent 7abf85f69c
commit 285a908f86
674 changed files with 49530 additions and 4826 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() );