diff options
| author | Rusty Wagner <rusty@vector35.com> | 2018-07-13 18:43:34 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2018-07-13 18:43:34 -0400 |
| commit | c5c93fc82b8929d04f62d241ca50228de60fa5f4 (patch) | |
| tree | e9456e0921d0706ab839cf4ca96eba18afec96a4 /interaction.cpp | |
| parent | dfe5d28f0aaee75ccad8c733e23879676ed77c37 (diff) | |
Add ability to update custom flow graphs
Diffstat (limited to 'interaction.cpp')
| -rw-r--r-- | interaction.cpp | 4 |
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); } |
