diff --git a/Plugins/CyberArchWarehouse/Source/CyberArchWarehouse/Public/LocusDBReader.h b/Plugins/CyberArchWarehouse/Source/CyberArchWarehouse/Public/LocusDBReader.h index 11124f620f59396a95ec8a0c642e5ac300e7119e..9002a723687e1f8e8e3569ba1d72db45bc87f807 100644 --- a/Plugins/CyberArchWarehouse/Source/CyberArchWarehouse/Public/LocusDBReader.h +++ b/Plugins/CyberArchWarehouse/Source/CyberArchWarehouse/Public/LocusDBReader.h @@ -5,7 +5,7 @@ #include "Launch/Resources/Version.h" #include "Interfaces/IHttpRequest.h" #include "Interfaces/IHttpResponse.h" -#include "HTTPManager.h" +#include "HttpManager.h" #include "HttpModule.h" #include "Json.h" #include "JsonUtilities.h" diff --git a/Plugins/MqttUtilities/Source/MqttUtilities/Private/Linux/Utils/StringUtils.cpp b/Plugins/MqttUtilities/Source/MqttUtilities/Private/Linux/Utils/StringUtils.cpp index c76ce75248c9bf5d37246367d3869b247d0bec15..c88ee2e758e13dbd60c96a5c714073af4f74fcd8 100644 --- a/Plugins/MqttUtilities/Source/MqttUtilities/Private/Linux/Utils/StringUtils.cpp +++ b/Plugins/MqttUtilities/Source/MqttUtilities/Private/Linux/Utils/StringUtils.cpp @@ -4,7 +4,8 @@ char* StringUtils::CopyString(FString str) { - const char* originalStr = TCHAR_TO_ANSI(*str); + const char* originalStr; + originalStr = TCHAR_TO_ANSI(*str); char *copyStr; size_t str_len; diff --git a/Plugins/WebUI/Source/WebBrowserUI/Private/CEF/CEFWebInterfaceBrowserWindow.cpp b/Plugins/WebUI/Source/WebBrowserUI/Private/CEF/CEFWebInterfaceBrowserWindow.cpp index e841a7ff28b23d5b0e211f1f0f34594a92e06714..357dc1efcd2be1d9344ca6463d6a69ac63d42528 100644 --- a/Plugins/WebUI/Source/WebBrowserUI/Private/CEF/CEFWebInterfaceBrowserWindow.cpp +++ b/Plugins/WebUI/Source/WebBrowserUI/Private/CEF/CEFWebInterfaceBrowserWindow.cpp @@ -2402,7 +2402,7 @@ void FCEFWebInterfaceBrowserWindow::HandleOnResourceLoadComplete(const CefString ResourceLoadCompleteDelegate.ExecuteIfBound(WCHAR_TO_TCHAR(URL.ToWString().c_str()), _ResourceTypeToString(Type), _URLRequestStatusToString(Status), ContentLength); } -EWebInterfaceBrowserConsoleLogSeverity CefLogSeverityToWebBrowser(cef_log_severity_t Level) +EWebInterfaceBrowserConsoleLogSeverity CefLogSeverityToWebBrowserWebUI(cef_log_severity_t Level) { switch (Level) { @@ -2426,7 +2426,7 @@ EWebInterfaceBrowserConsoleLogSeverity CefLogSeverityToWebBrowser(cef_log_severi void FCEFWebInterfaceBrowserWindow::HandleOnConsoleMessage(CefRefPtr<CefBrowser> Browser, cef_log_severity_t Level, const CefString& Message, const CefString& Source, int32 Line) { - ConsoleMessageDelegate.ExecuteIfBound(WCHAR_TO_TCHAR(Message.ToWString().c_str()), WCHAR_TO_TCHAR(Source.ToWString().c_str()), Line, CefLogSeverityToWebBrowser(Level)); + ConsoleMessageDelegate.ExecuteIfBound(WCHAR_TO_TCHAR(Message.ToWString().c_str()), WCHAR_TO_TCHAR(Source.ToWString().c_str()), Line, CefLogSeverityToWebBrowserWebUI(Level)); } TOptional<FString> FCEFWebInterfaceBrowserWindow::GetResourceContent( CefRefPtr< CefFrame > Frame, CefRefPtr< CefRequest > Request)