Skip to content

Commit fadfd4a

Browse files
Merge pull request #174 from immutable/fix/dx-3570
fix: compile errors for 5.1 and greater (#3570)
2 parents 25ebb4e + 5df6090 commit fadfd4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/ImmutableMarketplace/Private/OnRamp/ImmutableMarketplaceOnRampWidget.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@ void UImmutableMarketplaceOnRampWidget::HandleOnUrlChanged(const FText& Text)
9696
}
9797

9898
#if (ENGINE_MAJOR_VERSION >= 5 && ENGINE_MINOR_VERSION >= 1)
99-
void UOnRampWidget::HandleOnConsoleMessage(const FString& Message, const FString& Source, int32 Line, EWebBrowserConsoleLogSeverity Severity)
99+
void UImmutableMarketplaceOnRampWidget::HandleOnConsoleMessage(const FString& Message, const FString& Source, int32 Line, EWebBrowserConsoleLogSeverity Severity)
100100
{
101101
UE_LOG(LogImmutableOnRampWidget, Log, TEXT("Web Browser console message: %s, Source: %s, Line: %d"), *Message, *Source, Line);
102102
}
103103

104-
bool UOnRampWidget::HandleOnBeforePopup(FString URL, FString Frame)
104+
bool UImmutableMarketplaceOnRampWidget::HandleOnBeforePopup(FString URL, FString Frame)
105105
{
106106
return false;
107107
}

0 commit comments

Comments
 (0)