diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-07-10 01:03:30 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-07-10 01:03:30 -0400 |
| commit | 680179d22dee90938666b9e5b2033bcb6c48c7d2 (patch) | |
| tree | d3ddd65f0bada990efa2d2f794e9066979414a72 /functiongraph.cpp | |
| parent | 5e539bf3e497a9781037fcddf6be6a51e551fce4 (diff) | |
Initial implementation of low level IL
Diffstat (limited to 'functiongraph.cpp')
| -rw-r--r-- | functiongraph.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functiongraph.cpp b/functiongraph.cpp index d6f9a85a..1ebd149f 100644 --- a/functiongraph.cpp +++ b/functiongraph.cpp @@ -62,9 +62,9 @@ void FunctionGraph::SetMaximumSymbolWidth(size_t width) } -void FunctionGraph::StartLayout() +void FunctionGraph::StartLayout(BNFunctionGraphType type) { - BNStartFunctionGraphLayout(m_graph); + BNStartFunctionGraphLayout(m_graph, type); } |
