diff options
Diffstat (limited to 'src/project.c')
-rw-r--r-- | src/project.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/project.c b/src/project.c index 9c4c636..bc3ec66 100644 --- a/src/project.c +++ b/src/project.c @@ -352,7 +352,8 @@ size_t g_study_project_attach_binary(GStudyProject *project, GLoadedBinary *bina GtkWidget *view; /* Affichage du binaire */ BinaryDisplayType type; /* Options d'affichage */ GtkWidget *scroll; /* Surface d'exposition */ - const char *title; /* Titre associƩ au binaire */ + const char *name; /* Titre associƩ au binaire */ + const char *lname; /* Description du binaire */ loaded = (loaded_binary *)calloc(1, sizeof(loaded_binary)); @@ -400,9 +401,10 @@ size_t g_study_project_attach_binary(GStudyProject *project, GLoadedBinary *bina /* Support graphique final */ scroll = loaded->scrollwindows[BVW_BLOCK]; - title = g_loaded_binary_get_filename(binary, false); + name = g_loaded_binary_get_name(binary, false); + lname = g_loaded_binary_get_name(binary, true); - loaded->item = g_panel_item_new(project->ref, title, title, scroll, "M"); + loaded->item = g_panel_item_new(project->ref, name, lname, scroll, "M"); /* Enregistrement dans le projet */ |