[Xfce4-commits] <midori:master> Emit inspector attach-window with correct signature
Christian Dywan
noreply at xfce.org
Thu Nov 22 02:02:04 CET 2012
Updating branch refs/heads/master
to 7d50b0e12b3b8027ccbcffc2ef71c7d4ea147951 (commit)
from c7e5a156e0e038095ccf585cb043cccd0177fe7a (commit)
commit 7d50b0e12b3b8027ccbcffc2ef71c7d4ea147951
Author: Christian Dywan <christian at twotoasts.de>
Date: Thu Nov 22 01:59:33 2012 +0100
Emit inspector attach-window with correct signature
midori/midori-view.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/midori/midori-view.c b/midori/midori-view.c
index 3c6ca8c..e27394f 100644
--- a/midori/midori-view.c
+++ b/midori/midori-view.c
@@ -3489,7 +3489,10 @@ midori_view_web_inspector_show_window_cb (WebKitWebInspector* inspector,
if (!window)
return FALSE;
if (katze_object_get_boolean (view->settings, "last-inspector-attached"))
- g_signal_emit_by_name (inspector, "attach-window");
+ {
+ gboolean handled = FALSE;
+ g_signal_emit_by_name (inspector, "attach-window", inspector, &handled);
+ }
else
{
gtk_widget_show (window);
More information about the Xfce4-commits
mailing list