gtk+ r19344 - in trunk: . gdk/win32
- From: bratsche svn gnome org
- To: svn-commits-list gnome org
- Subject: gtk+ r19344 - in trunk: . gdk/win32
- Date: Thu, 10 Jan 2008 20:58:40 +0000 (GMT)
Author: bratsche
Date: Thu Jan 10 20:58:40 2008
New Revision: 19344
URL: http://svn.gnome.org/viewvc/gtk+?rev=19344&view=rev
Log:
2008-01-10 Cody Russell <bratsche gnome org>
* gdk/win32/gdkwindow-win32.c: (gdk_window_set_transient_for),
Properly ref/unref windows and parents. (#506769)
Modified:
trunk/ChangeLog
trunk/gdk/win32/gdkwindow-win32.c
Modified: trunk/gdk/win32/gdkwindow-win32.c
==============================================================================
--- trunk/gdk/win32/gdkwindow-win32.c (original)
+++ trunk/gdk/win32/gdkwindow-win32.c Thu Jan 10 20:58:40 2008
@@ -1985,6 +1985,8 @@
trans_impl->transient_children = NULL;
}
}
+ g_object_unref (G_OBJECT (window_impl->transient_owner));
+ g_object_unref (G_OBJECT (window));
window_impl->transient_owner = NULL;
}
@@ -1993,8 +1995,10 @@
parent_impl = GDK_WINDOW_IMPL_WIN32 (GDK_WINDOW_OBJECT (parent)->impl);
parent_impl->transient_children = g_slist_append (parent_impl->transient_children, window);
+ g_object_ref (G_OBJECT (window));
parent_impl->num_transients++;
window_impl->transient_owner = parent;
+ g_object_ref (G_OBJECT (parent));
}
/* This changes the *owner* of the window, despite the misleading
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]