Skip to content
Snippets Groups Projects
Commit 8c2124c0 authored by Ehret's avatar Ehret
Browse files

update FProperty from now deprecated version

parent 76dcf7f6
No related branches found
No related tags found
No related merge requests found
......@@ -446,7 +446,7 @@ void AVAReceiverActor::RunOnAllNodes(const FString Command)
}
}
void AVAReceiverActor::HandleClusterEvent(const FDisplayClusterClusterEvent& Event)
void AVAReceiverActor::HandleClusterEvent(const FDisplayClusterClusterEventJson& Event)
{
if (Event.Category == "VAPlugin" && Event.Type == "command")
{
......@@ -487,7 +487,7 @@ void AVAReceiverActor::HandleClusterCommand(const FString Command)
// ****************************************************************** //
#if WITH_EDITOR
bool AVAReceiverActor::CanEditChange(const UProperty* InProperty) const
bool AVAReceiverActor::CanEditChange(const FProperty* InProperty) const
{
// Check manual Address
if (InProperty->GetFName() == GET_MEMBER_NAME_CHECKED(AVAReceiverActor, ServerIPAddress) ||
......
......@@ -621,7 +621,7 @@ float UVASourceComponent::GetSoundTimeOffset() const
// ****************************************************************** //
#if WITH_EDITOR
bool UVASourceComponent::CanEditChange(const UProperty* InProperty) const
bool UVASourceComponent::CanEditChange(const FProperty* InProperty) const
{
const bool ParentVal = Super::CanEditChange(InProperty);
......
......@@ -153,7 +153,7 @@ protected:
#if WITH_EDITOR
bool CanEditChange(const UProperty* InProperty) const override;
bool CanEditChange(const FProperty* InProperty) const override;
#endif
// Current Receiver Actor
......
......@@ -251,7 +251,7 @@ protected:
#if WITH_EDITOR
// Function to improve settings displayed in Editor, can only be used in editor mode
bool CanEditChange(const UProperty* InProperty) const override;
bool CanEditChange(const FProperty* InProperty) const override;
#endif
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment