diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-04-22 00:11:29 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-04-22 00:11:29 (GMT) |
commit | 6cbb81bc46347ce969f5bf24a73f08abd009b82b (patch) | |
tree | cb2f8c46f5425a2348520bf78c501ef34902a14c /src/dialogs | |
parent | ea40f74566cd813722f49ae740ca3df04e522bb2 (diff) |
Allowed to refer to an external list for highlighted segments.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@515 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/dialogs')
-rw-r--r-- | src/dialogs/export.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs/export.c b/src/dialogs/export.c index 5667730..16622a9 100644 --- a/src/dialogs/export.c +++ b/src/dialogs/export.c @@ -259,7 +259,7 @@ static void export_assistant_close(GtkAssistant *assistant, GObject *ref) binary = G_LOADED_BINARY(g_object_get_data(ref, "binary")); buffer = g_loaded_binary_get_disassembled_buffer(binary); - view = g_buffer_view_new(buffer); + view = g_buffer_view_new(buffer, NULL); g_buffer_view_export(view, &ctx, type, display); |