]> Pileus Git - ~andy/gtk/commitdiff
Fixes "notification area leaks space" (bug #312687)
authorMark McLoughlin <mark@skynet.ie>
Tue, 9 Aug 2005 16:30:09 +0000 (16:30 +0000)
committerMark McLoughlin <markmc@src.gnome.org>
Tue, 9 Aug 2005 16:30:09 +0000 (16:30 +0000)
2005-08-09  Mark McLoughlin  <mark@skynet.ie>

        Fixes "notification area leaks space" (bug #312687)

        * gtk/gtksocket-x11.c: (_gtk_socket_windowing_filter_func):
          gtk/gtkplug.c: (_gtk_plug_add_to_socket): don't pass a
        detail to g_signal_emit_by_name()

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gtk/gtkplug.c
gtk/gtksocket-x11.c

index 25893de543f71808803058edc6a8afe32f226415..71e335f835378ead5168267fe0f77ee3f74ad394 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-08-09  Mark McLoughlin  <mark@skynet.ie>
+
+       Fixes "notification area leaks space" (bug #312687)
+
+       * gtk/gtksocket-x11.c: (_gtk_socket_windowing_filter_func):
+         gtk/gtkplug.c: (_gtk_plug_add_to_socket): don't pass a 
+       detail to g_signal_emit_by_name()
+
 2005-08-09  Matthias Clasen  <mclasen@redhat.com>
 
        * NEWS: Updates
index 25893de543f71808803058edc6a8afe32f226415..71e335f835378ead5168267fe0f77ee3f74ad394 100644 (file)
@@ -1,3 +1,11 @@
+2005-08-09  Mark McLoughlin  <mark@skynet.ie>
+
+       Fixes "notification area leaks space" (bug #312687)
+
+       * gtk/gtksocket-x11.c: (_gtk_socket_windowing_filter_func):
+         gtk/gtkplug.c: (_gtk_plug_add_to_socket): don't pass a 
+       detail to g_signal_emit_by_name()
+
 2005-08-09  Matthias Clasen  <mclasen@redhat.com>
 
        * NEWS: Updates
index 25893de543f71808803058edc6a8afe32f226415..71e335f835378ead5168267fe0f77ee3f74ad394 100644 (file)
@@ -1,3 +1,11 @@
+2005-08-09  Mark McLoughlin  <mark@skynet.ie>
+
+       Fixes "notification area leaks space" (bug #312687)
+
+       * gtk/gtksocket-x11.c: (_gtk_socket_windowing_filter_func):
+         gtk/gtkplug.c: (_gtk_plug_add_to_socket): don't pass a 
+       detail to g_signal_emit_by_name()
+
 2005-08-09  Matthias Clasen  <mclasen@redhat.com>
 
        * NEWS: Updates
index 257afdb3af2e33a1b99e5a7fa50a063d9019e8d9..f901dae5e715aaa869a68f6a4a6f33367ed4ca5a 100644 (file)
@@ -254,7 +254,7 @@ _gtk_plug_add_to_socket (GtkPlug   *plug,
 
   gtk_widget_set_parent (widget, GTK_WIDGET (socket));
 
-  g_signal_emit_by_name (socket, "plug_added", 0);
+  g_signal_emit_by_name (socket, "plug_added");
 }
 
 /**
index 160af72e5c217ce36b68f77dd547093f96ce8ca4..46d7f5f216a0c70c17c9f6eb05ef3a7bbbd5fb18 100644 (file)
@@ -494,7 +494,7 @@ _gtk_socket_windowing_filter_func (GdkXEvent *gdk_xevent,
            _gtk_socket_end_embedding (socket);
 
            g_object_ref (widget);
-           g_signal_emit_by_name (widget, "plug_removed", 0, &result);
+           g_signal_emit_by_name (widget, "plug_removed", &result);
            if (!result)
              gtk_widget_destroy (widget);
            g_object_unref (widget);