diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-10-17 22:38:38 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-10-17 22:38:38 (GMT) |
commit | af29afcc9a37113e4187b1c0a20e3bf5e2dcd4d9 (patch) | |
tree | 46da4b3886b43d4bb549aa01012bda13ce36c375 /src/panels | |
parent | ed846003946a44588c7c131b9c9001f97bf10711 (diff) |
Removed a lot of gcc warnings.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@272 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/panels')
-rw-r--r-- | src/panels/panel.c | 26 | ||||
-rw-r--r-- | src/panels/panel.h | 3 |
2 files changed, 0 insertions, 29 deletions
diff --git a/src/panels/panel.c b/src/panels/panel.c index 4d08b7f..139a44b 100644 --- a/src/panels/panel.c +++ b/src/panels/panel.c @@ -157,32 +157,6 @@ void init_internal_panels(void) /****************************************************************************** * * -* Paramètres : top = espace courant d'affichage principal. * -* * -* Description : Incruste tous les panneaux dans la fenêtre de l'éditeur. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ - -void place_all_panels_in_editor(GtkWidget *top) -{ - GEditorPanel *iter; /* Boucle de parcours */ - GDockItem *ditem; /* Panneau avec ses infos. */ - - panels_list_for_each(iter, panels_list) - { - ditem = g_dock_item_new(iter->name, iter->widget); - gtk_dock_panel_add_item(GTK_DOCK_PANEL(top), ditem); - } - -} - - -/****************************************************************************** -* * * Paramètres : binary = nouvelle instance de binaire analysé. * * * * Description : Lance une actualisation du fait d'un changement de binaire. * diff --git a/src/panels/panel.h b/src/panels/panel.h index 60ce657..65887c7 100644 --- a/src/panels/panel.h +++ b/src/panels/panel.h @@ -73,9 +73,6 @@ void change_current_binary_in_panels(GObject *, GLoadedBinary *); /* Procède au chargement de tous les panneaux internes. */ void init_internal_panels(void); -/* Incruste tous les panneaux dans la fenêtre de l'éditeur. */ -void place_all_panels_in_editor(GtkWidget *); - /* Lance une actualisation du fait d'un changement de binaire. */ void notify_panels_of_binary_change(GLoadedBinary *); |