summaryrefslogtreecommitdiff
path: root/interaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'interaction.cpp')
-rw-r--r--interaction.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/interaction.cpp b/interaction.cpp
index da3942bb..b2e62482 100644
--- a/interaction.cpp
+++ b/interaction.cpp
@@ -431,9 +431,9 @@ void BinaryNinja::ShowGraphReport(const string& title, FlowGraph* graph)
{
Ref<Function> func = graph->GetFunction();
if (func)
- BNShowGraphReport(func->GetView()->GetObject(), title.c_str(), graph->GetGraphObject());
+ BNShowGraphReport(func->GetView()->GetObject(), title.c_str(), graph->GetObject());
else
- BNShowGraphReport(nullptr, title.c_str(), graph->GetGraphObject());
+ BNShowGraphReport(nullptr, title.c_str(), graph->GetObject());
}
@@ -691,5 +691,5 @@ void ReportCollection::AddHTMLReport(Ref<BinaryView> view, const string& title,
void ReportCollection::AddGraphReport(Ref<BinaryView> view, const string& title, Ref<FlowGraph> graph)
{
- BNAddGraphReportToCollection(m_object, view ? view->GetObject() : nullptr, title.c_str(), graph->GetGraphObject());
+ BNAddGraphReportToCollection(m_object, view ? view->GetObject() : nullptr, title.c_str(), graph->GetObject());
}