Skip to content

Commit 4507d6e

Browse files
author
Roberto De Ioris
committed
more 4.20 fixes
1 parent c4d1cb5 commit 4507d6e

File tree

13 files changed

+14
-13
lines changed

13 files changed

+14
-13
lines changed

Source/PythonConsole/Private/SPythonLog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#pragma once
44
#include "Runtime/Slate/Public/Framework/Text/BaseTextLayoutMarshaller.h"
5-
#include "TextFilterExpressionEvaluator.h"
5+
#include "Runtime/Core/Public/Misc/TextFilterExpressionEvaluator.h"
66
#include "Runtime/SlateCore/Public/SlateCore.h"
77
#include "UnrealEnginePython.h"
88
#include "Runtime/Slate/Public/Widgets/Input/SMultiLineEditableTextBox.h"

Source/PythonEditor/Private/PYRichTextSyntaxHighlighterTextLayoutMarshaller.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "Runtime/SlateCore/Public/Styling/SlateTypes.h"
55
#include "PythonSyntaxTokenizer.h"
6-
#include "PlainTextLayoutMarshaller.h"
6+
#include "Runtime/Slate/Public/Framework/Text/PlainTextLayoutMarshaller.h"
77
#include "ITextDecorator.h"
88
#include "PythonEditorStyle.h"
99

Source/PythonEditor/Private/PythonEditor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
22

3-
#include "ModuleManager.h"
3+
#include "Runtime/Core/Public/Modules/ModuleManager.h"
44
#include "AssetToolsModule.h"
55
#include "AssetEditorToolkit.h"
66
#include "LevelEditor.h"

Source/PythonEditor/Private/PythonEditorStyle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#pragma once
44

5-
#include "SlateStyle.h"
5+
#include "Runtime/SlateCore/Public/Styling/SlateStyle.h"
66

77
class FPythonEditorStyle
88
{

Source/PythonEditor/Private/PythonProjectEditor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#pragma once
44

5-
#include "WorkflowCentricApplication.h"
5+
#include "Editor/Kismet/Public/WorkflowOrientedApp/WorkflowCentricApplication.h"
66
#include "Editor/Kismet/Public/WorkflowOrientedApp/WorkflowTabManager.h"
77
#include "Runtime/Launch/Resources/Version.h"
88

Source/PythonEditor/Private/PythonProjectEditorCommands.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#pragma once
44

5-
#include "Commands.h"
5+
#include "Runtime/Slate/Public/Framework/Commands/Commands.h"
66

77
class FPythonProjectEditorCommands : public TCommands<FPythonProjectEditorCommands>
88
{

Source/PythonEditor/Private/PythonSyntaxTokenizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
22

33
#include "PythonSyntaxTokenizer.h"
4-
#include "BreakIterator.h"
4+
#include "Runtime/Core/Public/Internationalization/BreakIterator.h"
55

66
TSharedRef< FPythonSyntaxTokenizer > FPythonSyntaxTokenizer::Create(TArray<FRule> InRules)
77
{

Source/PythonEditor/Private/SPythonEditableText.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#pragma once
44

5-
#include "SMultiLineEditableText.h"
5+
#include "Runtime/Slate/Public/Widgets/Text/SMultiLineEditableText.h"
66

77
class SPythonEditableText : public SMultiLineEditableText
88
{

Source/PythonEditor/Private/WhiteSpaceTextRun.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#pragma once
44

5-
#include "SlateTextRun.h"
5+
#include "Runtime/Slate/Public/Framework/Text/SlateTextRun.h"
66

77
class FWhiteSpaceTextRun : public FSlateTextRun
88
{

Source/UnrealEnginePython/Private/PyCommandlet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "Editor.h"
88
#endif
99

10-
#include "Regex.h"
10+
#include "Runtime/Core/Public/Internationalization/Regex.h"
1111

1212
UPyCommandlet::UPyCommandlet(const FObjectInitializer& ObjectInitializer)
1313
: Super(ObjectInitializer)

0 commit comments

Comments
 (0)