Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/Flow/Public/AddOns/FlowNodeAddOn.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class UFlowNodeAddOn : public UFlowNodeBase
// UFlowNodeBase

#if WITH_EDITOR
virtual UEdGraphNode* GetGraphNode() const override;
FLOW_API virtual UEdGraphNode* GetGraphNode() const override;
#endif

// AddOns may opt in to be eligible for a given parent
Expand Down
6 changes: 3 additions & 3 deletions Source/FlowEditor/Public/Nodes/FlowNodeBlueprintFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class UFlowNodeBaseBlueprintFactory : public UFactory
TSubclassOf<class UFlowNodeBase> ParentClass;

// UFactory
virtual bool ConfigureProperties() override;
virtual UObject* FactoryCreateNew(UClass* Class, UObject* InParent, FName Name, EObjectFlags Flags, UObject* Context, FFeedbackContext* Warn, FName CallingContext) override;
virtual UObject* FactoryCreateNew(UClass* Class, UObject* InParent, FName Name, EObjectFlags Flags, UObject* Context, FFeedbackContext* Warn) override;
FLOWEDITOR_API virtual bool ConfigureProperties() override;
FLOWEDITOR_API virtual UObject* FactoryCreateNew(UClass* Class, UObject* InParent, FName Name, EObjectFlags Flags, UObject* Context, FFeedbackContext* Warn, FName CallingContext) override;
FLOWEDITOR_API virtual UObject* FactoryCreateNew(UClass* Class, UObject* InParent, FName Name, EObjectFlags Flags, UObject* Context, FFeedbackContext* Warn) override;

void ShowCannotCreateBlueprintDialog();
// --
Expand Down