From: Przemek Sitek Date: Sun, 6 Apr 2008 23:17:17 +0000 (+0200) Subject: Save the return value of the panel's 'close' signal. X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef7113caca7598f28a60f93598d84adbb510a0b9;p=midori Save the return value of the panel's 'close' signal. --- diff --git a/src/midori-panel.c b/src/midori-panel.c index 139e03bf..8c4856d3 100644 --- a/src/midori-panel.c +++ b/src/midori-panel.c @@ -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