diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-03-27 20:26:06 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-03-27 20:26:06 (GMT) |
commit | 33906ce366efc053dee0b76d5bd668797b99071e (patch) | |
tree | d04f37f89df4a0e7b2e7c2055138005707244f87 /src/analysis | |
parent | 4bc86c5dc8d3cfa9780103b56f52024a49913c22 (diff) |
Added a section in the status bar to display activity progress.
Diffstat (limited to 'src/analysis')
-rw-r--r-- | src/analysis/project.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/analysis/project.c b/src/analysis/project.c index cb7f4bd..1a73e74 100644 --- a/src/analysis/project.c +++ b/src/analysis/project.c @@ -148,7 +148,7 @@ static void g_delayed_study_dispose(GDelayedStudy *); static void g_delayed_study_finalize(GDelayedStudy *); /* Prépare une intégration de binaire au projet courant. */ -static void g_delayed_study_process(GDelayedStudy *, GtkExtStatusBar *); +static void g_delayed_study_process(GDelayedStudy *, GtkStatusStack *); @@ -1089,8 +1089,8 @@ GDelayedStudy *g_delayed_study_new(GStudyProject *project, GBinContent *content, /****************************************************************************** * * -* Paramètres : dstudy = intégration à mener. * -* statusbar = barre de statut à tenir informée. * +* Paramètres : dstudy = intégration à mener. * +* status = barre de statut à tenir informée. * * * * Description : Prépare une intégration de binaire au projet courant. * * * @@ -1100,15 +1100,15 @@ GDelayedStudy *g_delayed_study_new(GStudyProject *project, GBinContent *content, * * ******************************************************************************/ -static void g_delayed_study_process(GDelayedStudy *dstudy, GtkExtStatusBar *statusbar) +static void g_delayed_study_process(GDelayedStudy *dstudy, GtkStatusStack *status) { - FormatMatchStatus status; /* Statut d'une reconnaissance */ + FormatMatchStatus mstatus; /* Statut d'une reconnaissance */ char *target; /* Sous-traitance requise */ GLoadedBinary *binary; /* Représentation chargée */ - status = find_matching_format(dstudy->content, NULL, &target); + mstatus = find_matching_format(dstudy->content, NULL, &target); - switch (status) + switch (mstatus) { case FMS_MATCHED: |