diff --git a/Source/PythonConsole/Private/PyFbxFactory.cpp b/Source/PythonConsole/Private/PyFbxFactory.cpp index 3cbf1a1a2..8c4f8a444 100644 --- a/Source/PythonConsole/Private/PyFbxFactory.cpp +++ b/Source/PythonConsole/Private/PyFbxFactory.cpp @@ -1,6 +1,6 @@ +#include "PyFbxFactory.h" #include "PythonConsolePrivatePCH.h" -#include "PyFbxFactory.h" #include "FbxMeshUtils.h" UPyFbxFactory::UPyFbxFactory(const FObjectInitializer& ObjectInitializer) diff --git a/Source/PythonConsole/Private/PythonConsoleModule.cpp b/Source/PythonConsole/Private/PythonConsoleModule.cpp index d9800bd36..0a8312a32 100644 --- a/Source/PythonConsole/Private/PythonConsoleModule.cpp +++ b/Source/PythonConsole/Private/PythonConsoleModule.cpp @@ -1,5 +1,6 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. +#include "PythonConsoleModule.h" #include "PythonConsolePrivatePCH.h" #include "SPythonConsole.h" #include "SPythonLog.h" @@ -93,4 +94,4 @@ TSharedRef< SWidget > FPythonConsoleModule::MakeConsoleInputBox( TSharedPtr< SEd TSharedRef< SPythonConsoleInputBox > NewConsoleInputBox = SNew( SPythonConsoleInputBox ); OutExposedEditableTextBox = NewConsoleInputBox->GetEditableTextBox(); return NewConsoleInputBox; -} \ No newline at end of file +} diff --git a/Source/PythonConsole/Private/PythonScriptFactory.cpp b/Source/PythonConsole/Private/PythonScriptFactory.cpp index 1b1828a7c..59840113c 100644 --- a/Source/PythonConsole/Private/PythonScriptFactory.cpp +++ b/Source/PythonConsole/Private/PythonScriptFactory.cpp @@ -1,6 +1,6 @@ +#include "PythonScriptFactory.h" #include "PythonConsolePrivatePCH.h" -#include "PythonScriptFactory.h" #include "PythonScript.h" UPythonScriptFactory::UPythonScriptFactory(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) { @@ -22,4 +22,4 @@ UObject* UPythonScriptFactory::FactoryCreateFile(UClass * Class, UObject *InPare bOutOperationCanceled = false; return NewAsset; -} \ No newline at end of file +} diff --git a/Source/PythonConsole/Private/SPythonConsole.cpp b/Source/PythonConsole/Private/SPythonConsole.cpp index 7f3590f32..6ee35390b 100644 --- a/Source/PythonConsole/Private/SPythonConsole.cpp +++ b/Source/PythonConsole/Private/SPythonConsole.cpp @@ -1,8 +1,8 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. +#include "SPythonConsole.h" #include "PythonConsolePrivatePCH.h" #include "PythonConsoleModule.h" -#include "SPythonConsole.h" #include "SPythonLog.h" namespace PythonConsoleDefs @@ -133,4 +133,4 @@ FSlateColor SPythonConsole::GetFlashColor() const } return FLinearColor(1,1,1,FlashAlpha); -} \ No newline at end of file +} diff --git a/Source/PythonConsole/Private/SPythonLog.cpp b/Source/PythonConsole/Private/SPythonLog.cpp index 14c74b28f..83fba24c3 100644 --- a/Source/PythonConsole/Private/SPythonLog.cpp +++ b/Source/PythonConsole/Private/SPythonLog.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonConsolePrivatePCH.h" #include "SPythonLog.h" +#include "PythonConsolePrivatePCH.h" #include "SScrollBorder.h" #include "GameFramework/GameMode.h" #include "Engine/LocalPlayer.h" diff --git a/Source/PythonEditor/Private/DirectoryScanner.cpp b/Source/PythonEditor/Private/DirectoryScanner.cpp index 1edc98793..3f08e9484 100644 --- a/Source/PythonEditor/Private/DirectoryScanner.cpp +++ b/Source/PythonEditor/Private/DirectoryScanner.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonEditorPrivatePCH.h" #include "DirectoryScanner.h" +#include "PythonEditorPrivatePCH.h" #include "PythonProjectItem.h" TArray FDirectoryScanner::CommandQueue; @@ -116,4 +116,4 @@ void FDirectoryScanner::AddDirectory(const FString& PathName, const FOnDirectory bool FDirectoryScanner::IsScanning() { return CommandQueue.Num() > 0; -} \ No newline at end of file +} diff --git a/Source/PythonEditor/Private/PYRichTextSyntaxHighlighterTextLayoutMarshaller.cpp b/Source/PythonEditor/Private/PYRichTextSyntaxHighlighterTextLayoutMarshaller.cpp index 53417bf6b..38f5ec1b4 100644 --- a/Source/PythonEditor/Private/PYRichTextSyntaxHighlighterTextLayoutMarshaller.cpp +++ b/Source/PythonEditor/Private/PYRichTextSyntaxHighlighterTextLayoutMarshaller.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonEditorPrivatePCH.h" #include "PYRichTextSyntaxHighlighterTextLayoutMarshaller.h" +#include "PythonEditorPrivatePCH.h" #include "WhiteSpaceTextRun.h" FPYRichTextSyntaxHighlighterTextLayoutMarshaller::FPYRichTextSyntaxHighlighterTextLayoutMarshaller(TSharedPtr< FPythonSyntaxTokenizer > InTokenizer, const FSyntaxTextStyle& InSyntaxTextStyle) diff --git a/Source/PythonEditor/Private/PythonEditorCustomization.cpp b/Source/PythonEditor/Private/PythonEditorCustomization.cpp index 3211546fb..04f762d82 100644 --- a/Source/PythonEditor/Private/PythonEditorCustomization.cpp +++ b/Source/PythonEditor/Private/PythonEditorCustomization.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonEditorPrivatePCH.h" #include "PythonEditorCustomization.h" +#include "PythonEditorPrivatePCH.h" UPythonEditorCustomization::UPythonEditorCustomization(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) @@ -20,4 +20,4 @@ const FTextCustomization& UPythonEditorCustomization::GetText(const FName& TextC static FTextCustomization Default; return Default; -} \ No newline at end of file +} diff --git a/Source/PythonEditor/Private/PythonEditorStyle.cpp b/Source/PythonEditor/Private/PythonEditorStyle.cpp index 02da9d8cc..69c94175f 100644 --- a/Source/PythonEditor/Private/PythonEditorStyle.cpp +++ b/Source/PythonEditor/Private/PythonEditorStyle.cpp @@ -1,5 +1,6 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. +#include "PythonEditorStyle.h" #include "PythonEditorPrivatePCH.h" #include "EditorStyleSet.h" diff --git a/Source/PythonEditor/Private/PythonProject.cpp b/Source/PythonEditor/Private/PythonProject.cpp index 2890a81a6..46a21bfee 100644 --- a/Source/PythonEditor/Private/PythonProject.cpp +++ b/Source/PythonEditor/Private/PythonProject.cpp @@ -1,5 +1,6 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. +#include "PythonProject.h" #include "PythonEditorPrivatePCH.h" diff --git a/Source/PythonEditor/Private/PythonProjectEditor.cpp b/Source/PythonEditor/Private/PythonProjectEditor.cpp index acd711638..10dfb294d 100644 --- a/Source/PythonEditor/Private/PythonProjectEditor.cpp +++ b/Source/PythonEditor/Private/PythonProjectEditor.cpp @@ -1,5 +1,6 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. +#include "PythonProjectEditor.h" #include "PythonEditorPrivatePCH.h" #include "SPythonEditor.h" #include "SPythonProjectEditor.h" @@ -561,4 +562,4 @@ bool FPythonProjectEditor::CanExecute() const } ////////////////////////////////////////////////////////////////////////// -#undef LOCTEXT_NAMESPACE \ No newline at end of file +#undef LOCTEXT_NAMESPACE diff --git a/Source/PythonEditor/Private/PythonProjectEditorCommands.cpp b/Source/PythonEditor/Private/PythonProjectEditorCommands.cpp index 84ef134d0..962da0abe 100644 --- a/Source/PythonEditor/Private/PythonProjectEditorCommands.cpp +++ b/Source/PythonEditor/Private/PythonProjectEditorCommands.cpp @@ -1,5 +1,6 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. +#include "PythonProjectEditorCommands.h" #include "PythonEditorPrivatePCH.h" diff --git a/Source/PythonEditor/Private/PythonProjectEditorToolbar.cpp b/Source/PythonEditor/Private/PythonProjectEditorToolbar.cpp index 4731a1d02..978341319 100644 --- a/Source/PythonEditor/Private/PythonProjectEditorToolbar.cpp +++ b/Source/PythonEditor/Private/PythonProjectEditorToolbar.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonEditorPrivatePCH.h" #include "PythonProjectEditorToolbar.h" +#include "PythonEditorPrivatePCH.h" #include "LevelEditorActions.h" #include "SourceCodeNavigation.h" #include "EditorStyleSet.h" @@ -41,4 +41,4 @@ void FPythonProjectEditorToolbar::FillEditorToolbar(FToolBarBuilder& ToolbarBuil } ToolbarBuilder.EndSection(); -} \ No newline at end of file +} diff --git a/Source/PythonEditor/Private/PythonProjectItem.cpp b/Source/PythonEditor/Private/PythonProjectItem.cpp index 615c6fcd0..abcd6ba35 100644 --- a/Source/PythonEditor/Private/PythonProjectItem.cpp +++ b/Source/PythonEditor/Private/PythonProjectItem.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonEditorPrivatePCH.h" #include "PythonProjectItem.h" +#include "PythonEditorPrivatePCH.h" #include "DirectoryScanner.h" #include "Developer/DirectoryWatcher/Public/IDirectoryWatcher.h" @@ -121,4 +121,4 @@ void UPythonProjectItem::HandleDirectoryChanged(const TArray& F break; } } -} \ No newline at end of file +} diff --git a/Source/PythonEditor/Private/PythonSyntaxTokenizer.cpp b/Source/PythonEditor/Private/PythonSyntaxTokenizer.cpp index 91c587cb6..9a3aa10da 100644 --- a/Source/PythonEditor/Private/PythonSyntaxTokenizer.cpp +++ b/Source/PythonEditor/Private/PythonSyntaxTokenizer.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonEditorPrivatePCH.h" #include "PythonSyntaxTokenizer.h" +#include "PythonEditorPrivatePCH.h" #include "BreakIterator.h" TSharedRef< FPythonSyntaxTokenizer > FPythonSyntaxTokenizer::Create(TArray InRules) diff --git a/Source/PythonEditor/Private/SProjectViewItem.cpp b/Source/PythonEditor/Private/SProjectViewItem.cpp index b99afa509..79a55e3cb 100644 --- a/Source/PythonEditor/Private/SProjectViewItem.cpp +++ b/Source/PythonEditor/Private/SProjectViewItem.cpp @@ -1,5 +1,6 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. +#include "SProjectViewItem.h" #include "PythonEditorPrivatePCH.h" #include "SProjectViewItem.h" #include "SInlineEditableTextBlock.h" diff --git a/Source/PythonEditor/Private/SPythonEditableText.cpp b/Source/PythonEditor/Private/SPythonEditableText.cpp index 4ca086e27..ef278a877 100644 --- a/Source/PythonEditor/Private/SPythonEditableText.cpp +++ b/Source/PythonEditor/Private/SPythonEditableText.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonEditorPrivatePCH.h" #include "SPythonEditableText.h" +#include "PythonEditorPrivatePCH.h" void SPythonEditableText::Construct(const FArguments& InArgs) diff --git a/Source/PythonEditor/Private/SPythonEditor.cpp b/Source/PythonEditor/Private/SPythonEditor.cpp index b192e7eef..5d0df1d31 100644 --- a/Source/PythonEditor/Private/SPythonEditor.cpp +++ b/Source/PythonEditor/Private/SPythonEditor.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonEditorPrivatePCH.h" #include "SPythonEditor.h" +#include "PythonEditorPrivatePCH.h" #include "SMultiLineEditableText.h" #include "PYRichTextSyntaxHighlighterTextLayoutMarshaller.h" #include "SPythonEditableText.h" @@ -149,4 +149,4 @@ FText SPythonEditor::GetLineAndColumn() const return FText::FromString(LineAndColumn); } -#undef LOCTEXT_NAMESPACE \ No newline at end of file +#undef LOCTEXT_NAMESPACE diff --git a/Source/PythonEditor/Private/SPythonProjectEditor.cpp b/Source/PythonEditor/Private/SPythonProjectEditor.cpp index f3240b843..e6fe14a3b 100644 --- a/Source/PythonEditor/Private/SPythonProjectEditor.cpp +++ b/Source/PythonEditor/Private/SPythonProjectEditor.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonEditorPrivatePCH.h" #include "SPythonProjectEditor.h" +#include "PythonEditorPrivatePCH.h" #include "SProjectViewItem.h" #include "DirectoryScanner.h" #include "SThrobber.h" @@ -135,4 +135,4 @@ void SPythonProjectEditor::HandleMouseButtonDoubleClick(UPythonProjectItem* Item } } -#undef LOCTEXT_NAMESPACE \ No newline at end of file +#undef LOCTEXT_NAMESPACE diff --git a/Source/PythonEditor/Private/WhiteSpaceTextRun.cpp b/Source/PythonEditor/Private/WhiteSpaceTextRun.cpp index d035f96c1..1dffc1d4d 100644 --- a/Source/PythonEditor/Private/WhiteSpaceTextRun.cpp +++ b/Source/PythonEditor/Private/WhiteSpaceTextRun.cpp @@ -1,7 +1,7 @@ // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved. -#include "PythonEditorPrivatePCH.h" #include "WhiteSpaceTextRun.h" +#include "PythonEditorPrivatePCH.h" TSharedRef< FWhiteSpaceTextRun > FWhiteSpaceTextRun::Create( const FRunInfo& InRunInfo, const TSharedRef< const FString >& InText, const FTextBlockStyle& Style, const FTextRange& InRange, int32 NumSpacesPerTab ) {