Fixed order of arguments to gdk_window_transient_for().

Tue Dec  8 15:10:17 1998  Owen Taylor  <otaylor@redhat.com>

	* gtk/gtkwindow.c (gtk_window_transient_parent_realized):
	Fixed order of arguments to gdk_window_transient_for().
This commit is contained in:
Owen Taylor
1998-12-08 20:12:26 +00:00
committed by Owen Taylor
parent f6c5b74fb7
commit 847aed3652
8 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Dec 8 15:10:17 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_transient_parent_realized):
Fixed order of arguments to gdk_window_transient_for().
Tue Dec 8 18:02:57 GMT 1998 Tony Gale <gale@gtk.org>
* examples/Makefile: simple top level Makefile that invokes all

View File

@ -1,3 +1,8 @@
Tue Dec 8 15:10:17 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_transient_parent_realized):
Fixed order of arguments to gdk_window_transient_for().
Tue Dec 8 18:02:57 GMT 1998 Tony Gale <gale@gtk.org>
* examples/Makefile: simple top level Makefile that invokes all

View File

@ -1,3 +1,8 @@
Tue Dec 8 15:10:17 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_transient_parent_realized):
Fixed order of arguments to gdk_window_transient_for().
Tue Dec 8 18:02:57 GMT 1998 Tony Gale <gale@gtk.org>
* examples/Makefile: simple top level Makefile that invokes all

View File

@ -1,3 +1,8 @@
Tue Dec 8 15:10:17 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_transient_parent_realized):
Fixed order of arguments to gdk_window_transient_for().
Tue Dec 8 18:02:57 GMT 1998 Tony Gale <gale@gtk.org>
* examples/Makefile: simple top level Makefile that invokes all

View File

@ -1,3 +1,8 @@
Tue Dec 8 15:10:17 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_transient_parent_realized):
Fixed order of arguments to gdk_window_transient_for().
Tue Dec 8 18:02:57 GMT 1998 Tony Gale <gale@gtk.org>
* examples/Makefile: simple top level Makefile that invokes all

View File

@ -1,3 +1,8 @@
Tue Dec 8 15:10:17 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_transient_parent_realized):
Fixed order of arguments to gdk_window_transient_for().
Tue Dec 8 18:02:57 GMT 1998 Tony Gale <gale@gtk.org>
* examples/Makefile: simple top level Makefile that invokes all

View File

@ -1,3 +1,8 @@
Tue Dec 8 15:10:17 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_transient_parent_realized):
Fixed order of arguments to gdk_window_transient_for().
Tue Dec 8 18:02:57 GMT 1998 Tony Gale <gale@gtk.org>
* examples/Makefile: simple top level Makefile that invokes all

View File

@ -562,7 +562,7 @@ gtk_window_transient_parent_realized (GtkWidget *parent,
GtkWidget *window)
{
if (GTK_WIDGET_REALIZED (window))
gdk_window_set_transient_for (parent->window, window->window);
gdk_window_set_transient_for (window->window, parent->window);
}
static void