summaryrefslogtreecommitdiff
path: root/src/gui/tb/source.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/tb/source.c')
-rw-r--r--src/gui/tb/source.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/tb/source.c b/src/gui/tb/source.c
index 02ed643..504c532 100644
--- a/src/gui/tb/source.c
+++ b/src/gui/tb/source.c
@@ -69,7 +69,7 @@ static void g_source_tbitem_finalize(GSourceTbItem *);
static void update_source_item_binary(GEditorItem *, GLoadedBinary *);
/* Réagit à un changement de panneau d'affichage courant. */
-static void update_source_item_view(GEditorItem *, GtkViewPanel *);
+static void update_source_item_view(GEditorItem *, GtkDisplayPanel *);
/* Réagit à un changement de sélection de la source courante. */
static void change_selected_source(GtkComboBox *, GSourceTbItem *);
@@ -269,8 +269,8 @@ static void update_source_item_binary(GEditorItem *item, GLoadedBinary *binary)
/******************************************************************************
* *
-* Paramètres : item = élément réactif sollicité. *
-* view = nouveau panneau d'affichage actif. *
+* Paramètres : item = élément réactif sollicité. *
+* panel = nouveau panneau d'affichage actif. *
* *
* Description : Réagit à un changement de panneau d'affichage courant. *
* *
@@ -280,9 +280,9 @@ static void update_source_item_binary(GEditorItem *item, GLoadedBinary *binary)
* *
******************************************************************************/
-static void update_source_item_view(GEditorItem *item, GtkViewPanel *view)
+static void update_source_item_view(GEditorItem *item, GtkDisplayPanel *panel)
{
- gtk_widget_set_sensitive(item->widget, GTK_IS_SOURCE_VIEW(view));
+ gtk_widget_set_sensitive(item->widget, GTK_IS_SOURCE_VIEW(panel));
}