Skip to content

Commit 304b4d6

Browse files
committed
Modernization and cleanup pass.
1 parent 0d8ec6f commit 304b4d6

4 files changed

Lines changed: 29 additions & 26 deletions

File tree

Source/WindowsMessageHandlerExample/Private/WindowsMessageHandlerExampleModule.cpp

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

33
#include "WindowsMessageHandlerExamplePrivatePCH.h"
44
#include "ModuleInterface.h"
5-
#include "SlateBasics.h"
65
#include "WindowsApplication.h"
76
#include "WindowsMessageHelpers.h"
87

Source/WindowsMessageHandlerExample/Private/WindowsMessageHandlerExamplePrivatePCH.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
#pragma once
44

5-
#include "Core.h"
5+
#include "Runtime/Core/Public/Core.h"
6+
#include "Runtime/Slate/Public/SlateBasics.h"

Source/WindowsMessageHandlerExample/WindowsMessageHandlerExample.Build.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ public WindowsMessageHandlerExample(TargetInfo Target)
1414
new string[] {
1515
"Core",
1616
"Slate",
17-
});
17+
}
18+
);
1819

1920
PrivateIncludePaths.AddRange(
2021
new string[] {
2122
"WindowsMessageHandlerExample/Private",
22-
});
23+
}
24+
);
2325
}
2426
}
2527
}
Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
{
2-
"FileVersion": 3,
3-
"Version": 1,
4-
"VersionName": "1.0",
5-
"FriendlyName": "WindowsMessageHandlerExample",
6-
"Description": "Example plug-in for the IWindowsMessageHandler API.",
7-
"Category": "UE4Plugins",
8-
"CreatedBy": "Headcrash Industries LLC",
9-
"CreatedByURL": "http://headcrash.industries",
10-
"DocsURL": "",
11-
"MarketplaceURL": "",
12-
"SupportURL": "",
13-
"Modules": [
14-
{
15-
"Name": "WindowsMessageHandlerExample",
16-
"Type": "Runtime",
17-
"LoadingPhase": "Default"
18-
}
19-
],
20-
"EnabledByDefault": false,
21-
"CanContainContent": false,
22-
"IsBetaVersion": false,
23-
"Installed": false
2+
"CanContainContent": false,
3+
"Category": "UE4Plugins",
4+
"CreatedBy": "Headcrash Industries LLC",
5+
"CreatedByURL": "http://headcrash.industries",
6+
"Description": "Example plug-in for the IWindowsMessageHandler API.",
7+
"DocsURL": "",
8+
"EnabledByDefault": false,
9+
"EngineVersion" : "4.11.0",
10+
"FileVersion": 3,
11+
"FriendlyName": "WindowsMessageHandlerExample",
12+
"Installed": false,
13+
"IsBetaVersion": false,
14+
"MarketplaceURL": "",
15+
"Modules": [
16+
{
17+
"Name": "WindowsMessageHandlerExample",
18+
"Type": "Runtime",
19+
"LoadingPhase": "Default"
20+
}
21+
],
22+
"SupportURL": "",
23+
"Version": 2,
24+
"VersionName": "1.1"
2425
}

0 commit comments

Comments
 (0)