diff options
Diffstat (limited to 'src/gui/panels')
| -rw-r--r-- | src/gui/panels/symbols.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/src/gui/panels/symbols.c b/src/gui/panels/symbols.c index aea90fe..6cc391f 100644 --- a/src/gui/panels/symbols.c +++ b/src/gui/panels/symbols.c @@ -46,7 +46,7 @@ struct _GSymbolsPanel      GtkTreeView *treeview;                  /* Composant d'affichage       */      GtkTreeStore *store;                    /* Modèle de gestion           */ -    GOpenidaBinary *binary;                 /* Binaire à prendre en compte */ +    GLoadedBinary *binary;                  /* Binaire à prendre en compte */  }; @@ -84,7 +84,7 @@ static void g_symbols_panel_init(GSymbolsPanel *);  static void on_symbols_selection_change(GtkTreeSelection *, GSymbolsPanel *);  /* Réagit à un changement d'affichage principal de contenu. */ -void change_symbols_panel_current_binary(GSymbolsPanel *, GOpenidaBinary *); +void change_symbols_panel_current_binary(GSymbolsPanel *, GLoadedBinary *); @@ -383,7 +383,7 @@ static void on_symbols_selection_change(GtkTreeSelection *selection, GSymbolsPan  *                                                                             *  ******************************************************************************/ -void change_symbols_panel_current_binary(GSymbolsPanel *panel, GOpenidaBinary *binary) +void change_symbols_panel_current_binary(GSymbolsPanel *panel, GLoadedBinary *binary)  {      GtkToggleToolButton *button;            /* Mode de représentation      */ @@ -437,7 +437,7 @@ static void reload_symbols_for_new_list_view(GSymbolsPanel *panel)      char tmp[VMPA_MAX_SIZE];                /* Version humainement lisible */      GtkTreeIter iter;                       /* Point d'insertion           */ -    format = g_openida_binary_get_format(panel->binary); +    format = g_loaded_binary_get_format(panel->binary);      routines = g_binary_format_get_routines(G_BIN_FORMAT(format), &routines_count);      qsort(routines, routines_count, sizeof(GBinRoutine *), (__compar_fn_t)g_binary_routine_rcompare); @@ -590,7 +590,7 @@ static void reload_symbols_for_new_tree_view(GSymbolsPanel *panel)      GtkTreeIter iter;                       /* Point d'insertion           */      GdkPixbuf *pixbuf;                      /* Icone pour l'élément inséré */ -    format = g_openida_binary_get_format(panel->binary); +    format = g_loaded_binary_get_format(panel->binary);      routines = g_binary_format_get_routines(G_BIN_FORMAT(format), &routines_count);      qsort(routines, routines_count, sizeof(GBinRoutine *), (__compar_fn_t)g_binary_routine_rcompare); | 
