diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-01-28 00:24:40 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-01-28 00:24:40 (GMT) |
commit | 94cb8acac1027a4deee933c84d7918f4a5ea4983 (patch) | |
tree | e6f5a1f372cdceb942d4bd659668c20dc34e649b /src/gui/menus | |
parent | fa99f722ed6b06ea7f6b56a8816c61ecd5053289 (diff) |
Allowed to filter contents before running analysis.
Diffstat (limited to 'src/gui/menus')
-rw-r--r-- | src/gui/menus/project.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/menus/project.c b/src/gui/menus/project.c index a6a078b..80eff6f 100644 --- a/src/gui/menus/project.c +++ b/src/gui/menus/project.c @@ -205,7 +205,7 @@ static void mcb_project_add_binary_file(GtkMenuItem *menuitem, GMenuBar *bar) if (content != NULL) { - g_study_project_discover_binary_content(project, content); + g_study_project_discover_binary_content(project, content, NULL, NULL); g_object_unref(G_OBJECT(content)); } |