Add notification for screen property. (#80280)

Thu Jun 20 12:16:00 2002  Owen Taylor  <otaylor@redhat.com>

	* gtk/gtkinvisible.c (gtk_invisible_set_screen): Add
	notification for screen property. (#80280)
This commit is contained in:
Owen Taylor 2002-06-20 16:14:24 +00:00 committed by Owen Taylor
parent 31d5930516
commit 3bbc2ee8b8
7 changed files with 33 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Thu Jun 20 12:16:00 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkinvisible.c (gtk_invisible_set_screen): Add
notification for screen property. (#80280)
Wed Jun 19 19:30:45 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c: Keep a global list of strings and

View File

@ -1,3 +1,8 @@
Thu Jun 20 12:16:00 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkinvisible.c (gtk_invisible_set_screen): Add
notification for screen property. (#80280)
Wed Jun 19 19:30:45 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c: Keep a global list of strings and

View File

@ -1,3 +1,8 @@
Thu Jun 20 12:16:00 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkinvisible.c (gtk_invisible_set_screen): Add
notification for screen property. (#80280)
Wed Jun 19 19:30:45 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c: Keep a global list of strings and

View File

@ -1,3 +1,8 @@
Thu Jun 20 12:16:00 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkinvisible.c (gtk_invisible_set_screen): Add
notification for screen property. (#80280)
Wed Jun 19 19:30:45 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c: Keep a global list of strings and

View File

@ -1,3 +1,8 @@
Thu Jun 20 12:16:00 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkinvisible.c (gtk_invisible_set_screen): Add
notification for screen property. (#80280)
Wed Jun 19 19:30:45 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c: Keep a global list of strings and

View File

@ -1,3 +1,8 @@
Thu Jun 20 12:16:00 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkinvisible.c (gtk_invisible_set_screen): Add
notification for screen property. (#80280)
Wed Jun 19 19:30:45 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c: Keep a global list of strings and

View File

@ -200,7 +200,10 @@ gtk_invisible_set_screen (GtkInvisible *invisible,
if (was_realized)
gtk_widget_unrealize (GTK_WIDGET (invisible));
invisible->screen = screen;
g_object_notify (G_OBJECT (invisible), "screen");
if (was_realized)
gtk_widget_realize (GTK_WIDGET (invisible));
}