summaryrefslogtreecommitdiff
path: root/src/format/dex/dex.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-09-11 21:37:36 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-09-11 21:37:36 (GMT)
commit0f1473cba267ad809c8e7d207b5ff5e3998745fc (patch)
tree8aea43688d78c10ee7758e2feed80be9abbfaaf6 /src/format/dex/dex.c
parentfe39a487b4db5564036a436bfcb7cf3561889fb5 (diff)
Displayed more details about the loading process in the status bar.
Diffstat (limited to 'src/format/dex/dex.c')
-rwxr-xr-xsrc/format/dex/dex.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/format/dex/dex.c b/src/format/dex/dex.c
index 3388861..582390a 100755
--- a/src/format/dex/dex.c
+++ b/src/format/dex/dex.c
@@ -265,16 +265,16 @@ GBinFormat *g_dex_format_new(GBinContent *content, GExeFormat *parent, GtkStatus
/* TODO : vérifier que les *_id ne se chevauchent pas */
- if (!load_all_dex_types(result))
+ if (!load_all_dex_types(result, status))
goto gdfn_error;
- if (!load_all_dex_fields(result))
+ if (!load_all_dex_fields(result, status))
goto gdfn_error;
- if (!load_all_dex_classes(result))
+ if (!load_all_dex_classes(result, status))
goto gdfn_error;
- if (!g_binary_format_complete_loading(base))
+ if (!g_binary_format_complete_loading(base, status))
goto gdfn_error;
return base;