Save the return value of the panel's 'close' signal.

This commit is contained in:
Przemek Sitek 2008-04-07 01:17:17 +02:00 committed by Christian Dywan
parent e70925d064
commit ef7113caca
1 changed files with 2 additions and 1 deletions

View File

@ -173,7 +173,8 @@ static void
midori_panel_button_close_clicked_cb (GtkWidget* toolitem,
MidoriPanel* panel)
{
g_signal_emit (panel, signals[CLOSE], 0);
gboolean return_value;
g_signal_emit (panel, signals[CLOSE], 0, &return_value);
}
static void