summaryrefslogtreecommitdiff
path: root/interaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'interaction.cpp')
-rw-r--r--interaction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/interaction.cpp b/interaction.cpp
index 61c9dfb3..da3942bb 100644
--- a/interaction.cpp
+++ b/interaction.cpp
@@ -208,7 +208,7 @@ static void ShowGraphReportCallback(void* ctxt, BNBinaryView* view, const char*
{
InteractionHandler* handler = (InteractionHandler*)ctxt;
handler->ShowGraphReport(view ? new BinaryView(BNNewViewReference(view)) : nullptr, title,
- new FlowGraph(BNNewFlowGraphReference(graph)));
+ new CoreFlowGraph(BNNewFlowGraphReference(graph)));
}
@@ -663,7 +663,7 @@ Ref<FlowGraph> ReportCollection::GetFlowGraph(size_t i) const
BNFlowGraph* graph = BNGetReportFlowGraph(m_object, i);
if (!graph)
return nullptr;
- return new FlowGraph(graph);
+ return new CoreFlowGraph(graph);
}