From 5b8bb967fb4fcc929410bc6edd1d87a11942130e Mon Sep 17 00:00:00 2001 From: mbellgardt <bellgardt@vr.rwth-aachen.de> Date: Tue, 26 Jan 2021 12:35:39 +0100 Subject: [PATCH] Fix deprecation warnings. --- Source/UniversalLogging/Private/UniversalLogging.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/UniversalLogging/Private/UniversalLogging.h b/Source/UniversalLogging/Private/UniversalLogging.h index 209e2a2..4df6a4b 100644 --- a/Source/UniversalLogging/Private/UniversalLogging.h +++ b/Source/UniversalLogging/Private/UniversalLogging.h @@ -35,8 +35,8 @@ public: private: TMap<FString, TUniquePtr<LogStreamImpl>> Streams; FString Session_ID; - TBaseDelegate<void, UWorld*, const UWorld::InitializationValues> On_Post_World_Initialization_Delegate; - TBaseDelegate<void, UWorld*> On_Pre_World_Finish_Destroy_Delegate; - TBaseDelegate<void, UWorld*, ELevelTick, float> On_World_Post_Actor_Tick_Delegate; + TDelegate<void(UWorld*, const UWorld::InitializationValues)> On_Post_World_Initialization_Delegate; + TDelegate<void(UWorld*)> On_Pre_World_Finish_Destroy_Delegate; + TDelegate<void(UWorld*, ELevelTick, float)> On_World_Post_Actor_Tick_Delegate; AOnScreenLog* On_Screen_Log_Actor; }; \ No newline at end of file -- GitLab