summaryrefslogtreecommitdiff
path: root/src/panels/panel.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-10-24 12:58:53 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-10-24 12:58:53 (GMT)
commit6ab5a66388182e6cb9a49b8d6e54a9348de4f264 (patch)
tree5dfdd4d9125423226cd44cc6e6c18502f362fbd2 /src/panels/panel.c
parent7e53295ae7e67c8473aca2974e519aa0a593788e (diff)
Introduced new views for rendering source code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@184 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/panels/panel.c')
-rw-r--r--src/panels/panel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/panels/panel.c b/src/panels/panel.c
index c9acac9..8b22f14 100644
--- a/src/panels/panel.c
+++ b/src/panels/panel.c
@@ -207,8 +207,8 @@ void notify_panels_of_binary_change(GOpenidaBinary *binary)
/******************************************************************************
* *
-* Paramètres : view = nouvelle visualisation de désassemblage. *
-* same = changement de binaire ou de vue ? *
+* Paramètres : panel = nouvelle visualisation de désassemblage. *
+* same = changement de binaire ou de vue ? *
* *
* Description : Lance une actualisation du fait d'un changement de vue. *
* *
@@ -218,13 +218,13 @@ void notify_panels_of_binary_change(GOpenidaBinary *binary)
* *
******************************************************************************/
-void notify_panels_of_view_change(GtkBinView *view, bool same)
+void notify_panels_of_view_change(GtkViewPanel *panel, bool same)
{
GEditorPanel *iter; /* Boucle de parcours */
panels_list_for_each(iter, panels_list)
if (iter->reload_view != NULL)
- iter->reload_view(iter, view, same);
+ iter->reload_view(iter, panel, same);
}