diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-11-11 18:47:15 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-11-11 18:47:15 (GMT) |
commit | 04f9aebee5249624ccd4173989354cd93474376f (patch) | |
tree | 90c23774e2898be78a372650a6d6d219104196fb /src/gui/dialogs | |
parent | 77c68b54d4b2970a749eb4a658c32d2a16deacf6 (diff) |
Extended the Python bindings.
Diffstat (limited to 'src/gui/dialogs')
-rw-r--r-- | src/gui/dialogs/export_graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/dialogs/export_graph.c b/src/gui/dialogs/export_graph.c index 55556b6..0af0203 100644 --- a/src/gui/dialogs/export_graph.c +++ b/src/gui/dialogs/export_graph.c @@ -117,7 +117,7 @@ void run_graph_export_assistant(GLoadedBinary *binary, GtkGraphDisplay *display, if (cursor != NULL) { - g_binary_cursor_get_info(G_BINARY_CURSOR(cursor), &target); + g_binary_cursor_retrieve(G_BINARY_CURSOR(cursor), &target); g_object_unref(G_OBJECT(cursor)); |