More fixes for Clang warnings

[CL 2238624 by Michael Trepka in Main branch]
This commit is contained in:
Michael Trepka
2014-07-31 15:43:08 -04:00
committed by UnrealBot
parent 3d331e7b6c
commit 3293117f09
39 changed files with 123 additions and 76 deletions
@@ -382,37 +382,37 @@ public:
protected:
FGraphActionNode( FString InCategory, int32 InGrouping, TSharedPtr<FEdGraphSchemaAction> InAction )
: Category( InCategory )
: SectionID ( 0 )
, Category( InCategory )
, Grouping( InGrouping )
, bIsRenameRequestBeforeReady( false )
, SectionID ( 0 )
{
Actions.Add( InAction );
}
FGraphActionNode( FString InCategory, FString InCategoryChain, int32 InGrouping, TSharedPtr<FEdGraphSchemaAction> InAction )
: Category( InCategory )
: SectionID ( 0 )
, Category( InCategory )
, CategoryChain( InCategoryChain )
, Grouping( InGrouping )
, bIsRenameRequestBeforeReady( false )
, SectionID ( 0 )
{
Actions.Add( InAction );
}
FGraphActionNode( FString InCategory, int32 InGrouping, TArray< TSharedPtr<FEdGraphSchemaAction> >& InActionList, int32 InSectionID = 0 )
: Category( InCategory )
, Grouping( InGrouping )
, bIsRenameRequestBeforeReady( false )
, SectionID ( InSectionID )
: SectionID ( InSectionID )
, Category( InCategory )
, Grouping( InGrouping )
, bIsRenameRequestBeforeReady( false )
{
Actions.Append( InActionList );
}
FGraphActionNode( int32 InGrouping, int32 InNodeSection )
: Grouping( InGrouping )
: SectionID ( InNodeSection )
, Grouping( InGrouping )
, bIsRenameRequestBeforeReady( false )
, SectionID ( InNodeSection )
{
Actions.Add( NULL );
}