demos/gtk-demo/appwindow.c demos/gtk-demo/item_factory.c

2001-07-31  Sven Neumann  <sven@gimp.org>

	* demos/gtk-demo/appwindow.c
	* demos/gtk-demo/item_factory.c
	* tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
This commit is contained in:
Sven Neumann 2001-07-31 09:42:35 +00:00 committed by Sven Neumann
parent 3956c38a96
commit bc5273de88
10 changed files with 46 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2001-07-31 Sven Neumann <sven@gimp.org>
* demos/gtk-demo/appwindow.c
* demos/gtk-demo/item_factory.c
* tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
* gtk/gtksignal.h (gtk_signal_handler_pending): corrected the wrong
argument order for g_signal_has_handler_pending.

View File

@ -1,3 +1,9 @@
2001-07-31 Sven Neumann <sven@gimp.org>
* demos/gtk-demo/appwindow.c
* demos/gtk-demo/item_factory.c
* tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
* gtk/gtksignal.h (gtk_signal_handler_pending): corrected the wrong
argument order for g_signal_has_handler_pending.

View File

@ -1,3 +1,9 @@
2001-07-31 Sven Neumann <sven@gimp.org>
* demos/gtk-demo/appwindow.c
* demos/gtk-demo/item_factory.c
* tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
* gtk/gtksignal.h (gtk_signal_handler_pending): corrected the wrong
argument order for g_signal_has_handler_pending.

View File

@ -1,3 +1,9 @@
2001-07-31 Sven Neumann <sven@gimp.org>
* demos/gtk-demo/appwindow.c
* demos/gtk-demo/item_factory.c
* tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
* gtk/gtksignal.h (gtk_signal_handler_pending): corrected the wrong
argument order for g_signal_has_handler_pending.

View File

@ -1,3 +1,9 @@
2001-07-31 Sven Neumann <sven@gimp.org>
* demos/gtk-demo/appwindow.c
* demos/gtk-demo/item_factory.c
* tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
* gtk/gtksignal.h (gtk_signal_handler_pending): corrected the wrong
argument order for g_signal_has_handler_pending.

View File

@ -1,3 +1,9 @@
2001-07-31 Sven Neumann <sven@gimp.org>
* demos/gtk-demo/appwindow.c
* demos/gtk-demo/item_factory.c
* tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
* gtk/gtksignal.h (gtk_signal_handler_pending): corrected the wrong
argument order for g_signal_has_handler_pending.

View File

@ -1,3 +1,9 @@
2001-07-31 Sven Neumann <sven@gimp.org>
* demos/gtk-demo/appwindow.c
* demos/gtk-demo/item_factory.c
* tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
* gtk/gtksignal.h (gtk_signal_handler_pending): corrected the wrong
argument order for g_signal_has_handler_pending.

View File

@ -211,7 +211,7 @@ do_appwindow (void)
*/
accel_group = gtk_accel_group_new ();
gtk_accel_group_attach (accel_group, GTK_OBJECT (window));
gtk_accel_group_attach (accel_group, G_OBJECT (window));
gtk_accel_group_unref (accel_group);
item_factory = gtk_item_factory_new (GTK_TYPE_MENU_BAR, "<main>", accel_group);

View File

@ -72,7 +72,7 @@ do_item_factory (void)
"<main>",
item_factory,
(GtkDestroyNotify) gtk_object_unref);
gtk_accel_group_attach (accel_group, GTK_OBJECT (window));
gtk_accel_group_attach (accel_group, G_OBJECT (window));
gtk_window_set_title (GTK_WINDOW (window), "Item Factory");
gtk_container_set_border_width (GTK_CONTAINER (window), 0);
gtk_item_factory_create_items (item_factory, nmenu_items, menu_items, NULL);

View File

@ -2833,7 +2833,7 @@ create_menus (void)
NULL);
accel_group = gtk_accel_group_new ();
gtk_accel_group_attach (accel_group, GTK_OBJECT (window));
gtk_accel_group_attach (accel_group, G_OBJECT (window));
gtk_window_set_title (GTK_WINDOW (window), "menus");
gtk_container_set_border_width (GTK_CONTAINER (window), 0);
@ -3146,7 +3146,7 @@ create_item_factory (void)
"<main>",
item_factory,
(GtkDestroyNotify) gtk_object_unref);
gtk_accel_group_attach (accel_group, GTK_OBJECT (window));
gtk_accel_group_attach (accel_group, G_OBJECT (window));
gtk_window_set_title (GTK_WINDOW (window), "Item Factory");
gtk_container_set_border_width (GTK_CONTAINER (window), 0);
gtk_item_factory_create_items (item_factory, nmenu_items, menu_items, NULL);