summaryrefslogtreecommitdiff
path: root/src/gui/panels/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/panels/log.c')
-rw-r--r--src/gui/panels/log.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/panels/log.c b/src/gui/panels/log.c
index 6bda922..0baa3a4 100644
--- a/src/gui/panels/log.c
+++ b/src/gui/panels/log.c
@@ -50,7 +50,7 @@ static GtkWidget *build_log_panel(void);
/******************************************************************************
* *
-* Paramètres : - *
+* Paramètres : ref = espace de référencement global. *
* *
* Description : Construit le panneau d'affichage des messages système. *
* *
@@ -60,14 +60,14 @@ static GtkWidget *build_log_panel(void);
* *
******************************************************************************/
-GPanelItem *create_log_panel(void)
+GPanelItem *create_log_panel(GObject *ref)
{
GEditorItem *result; /* Elément réactif à renvoyer */
GtkWidget *panel; /* Composant GTK visuel */
panel = build_log_panel();
- result = g_panel_item_new(PANEL_LOG_ID, _("Misc information"), panel, "S");
+ result = g_panel_item_new(ref, PANEL_LOG_ID, _("Misc information"), panel, "S");
return G_PANEL_ITEM(result);