Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix headers for clang 6 build #417

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/PythonConsole/Private/PyFbxFactory.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "PyFbxFactory.h"
#include "PythonConsolePrivatePCH.h"

#include "PyFbxFactory.h"
#include "FbxMeshUtils.h"

UPyFbxFactory::UPyFbxFactory(const FObjectInitializer& ObjectInitializer)
Expand Down
3 changes: 2 additions & 1 deletion Source/PythonConsole/Private/PythonConsoleModule.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -93,4 +94,4 @@ TSharedRef< SWidget > FPythonConsoleModule::MakeConsoleInputBox( TSharedPtr< SEd
TSharedRef< SPythonConsoleInputBox > NewConsoleInputBox = SNew( SPythonConsoleInputBox );
OutExposedEditableTextBox = NewConsoleInputBox->GetEditableTextBox();
return NewConsoleInputBox;
}
}
4 changes: 2 additions & 2 deletions Source/PythonConsole/Private/PythonScriptFactory.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "PythonScriptFactory.h"
#include "PythonConsolePrivatePCH.h"

#include "PythonScriptFactory.h"
#include "PythonScript.h"

UPythonScriptFactory::UPythonScriptFactory(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {
Expand All @@ -22,4 +22,4 @@ UObject* UPythonScriptFactory::FactoryCreateFile(UClass * Class, UObject *InPare

bOutOperationCanceled = false;
return NewAsset;
}
}
4 changes: 2 additions & 2 deletions Source/PythonConsole/Private/SPythonConsole.cpp
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -133,4 +133,4 @@ FSlateColor SPythonConsole::GetFlashColor() const
}

return FLinearColor(1,1,1,FlashAlpha);
}
}
2 changes: 1 addition & 1 deletion Source/PythonConsole/Private/SPythonLog.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions Source/PythonEditor/Private/DirectoryScanner.cpp
Original file line number Diff line number Diff line change
@@ -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<FDirectoryScannerCommand*> FDirectoryScanner::CommandQueue;
Expand Down Expand Up @@ -116,4 +116,4 @@ void FDirectoryScanner::AddDirectory(const FString& PathName, const FOnDirectory
bool FDirectoryScanner::IsScanning()
{
return CommandQueue.Num() > 0;
}
}
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions Source/PythonEditor/Private/PythonEditorCustomization.cpp
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -20,4 +20,4 @@ const FTextCustomization& UPythonEditorCustomization::GetText(const FName& TextC
static FTextCustomization Default;

return Default;
}
}
1 change: 1 addition & 0 deletions Source/PythonEditor/Private/PythonEditorStyle.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.

#include "PythonEditorStyle.h"
#include "PythonEditorPrivatePCH.h"
#include "EditorStyleSet.h"

Expand Down
1 change: 1 addition & 0 deletions Source/PythonEditor/Private/PythonProject.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.

#include "PythonProject.h"
#include "PythonEditorPrivatePCH.h"


Expand Down
3 changes: 2 additions & 1 deletion Source/PythonEditor/Private/PythonProjectEditor.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -561,4 +562,4 @@ bool FPythonProjectEditor::CanExecute() const
}
//////////////////////////////////////////////////////////////////////////

#undef LOCTEXT_NAMESPACE
#undef LOCTEXT_NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.

#include "PythonProjectEditorCommands.h"
#include "PythonEditorPrivatePCH.h"


Expand Down
4 changes: 2 additions & 2 deletions Source/PythonEditor/Private/PythonProjectEditorToolbar.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -41,4 +41,4 @@ void FPythonProjectEditorToolbar::FillEditorToolbar(FToolBarBuilder& ToolbarBuil
}
ToolbarBuilder.EndSection();

}
}
4 changes: 2 additions & 2 deletions Source/PythonEditor/Private/PythonProjectItem.cpp
Original file line number Diff line number Diff line change
@@ -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"

Expand Down Expand Up @@ -121,4 +121,4 @@ void UPythonProjectItem::HandleDirectoryChanged(const TArray<FFileChangeData>& F
break;
}
}
}
}
2 changes: 1 addition & 1 deletion Source/PythonEditor/Private/PythonSyntaxTokenizer.cpp
Original file line number Diff line number Diff line change
@@ -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<FRule> InRules)
Expand Down
1 change: 1 addition & 0 deletions Source/PythonEditor/Private/SProjectViewItem.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion Source/PythonEditor/Private/SPythonEditableText.cpp
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions Source/PythonEditor/Private/SPythonEditor.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -149,4 +149,4 @@ FText SPythonEditor::GetLineAndColumn() const
return FText::FromString(LineAndColumn);
}

#undef LOCTEXT_NAMESPACE
#undef LOCTEXT_NAMESPACE
4 changes: 2 additions & 2 deletions Source/PythonEditor/Private/SPythonProjectEditor.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -135,4 +135,4 @@ void SPythonProjectEditor::HandleMouseButtonDoubleClick(UPythonProjectItem* Item
}
}

#undef LOCTEXT_NAMESPACE
#undef LOCTEXT_NAMESPACE
2 changes: 1 addition & 1 deletion Source/PythonEditor/Private/WhiteSpaceTextRun.cpp
Original file line number Diff line number Diff line change
@@ -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 )
{
Expand Down