use GTK_IS_RADIO_MENU_ITEM instead of comparing the type directly. This
Sat Oct 12 15:28:06 2002 Manish Singh <yosh@gimp.org> * gtk/gtkitemfactory.c: use GTK_IS_RADIO_MENU_ITEM instead of comparing the type directly. This handles possible subclasses too. (Recommended by Tim Janik)
This commit is contained in:
committed by
Manish Singh
parent
91dc02591a
commit
9c44dfb07c
@@ -1,3 +1,9 @@
|
||||
Sat Oct 12 15:28:06 2002 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c: use GTK_IS_RADIO_MENU_ITEM instead
|
||||
of comparing the type directly. This handles possible subclasses
|
||||
too. (Recommended by Tim Janik)
|
||||
|
||||
Thu Oct 10 14:35:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.[ch]: Privately export
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
Sat Oct 12 15:28:06 2002 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c: use GTK_IS_RADIO_MENU_ITEM instead
|
||||
of comparing the type directly. This handles possible subclasses
|
||||
too. (Recommended by Tim Janik)
|
||||
|
||||
Thu Oct 10 14:35:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.[ch]: Privately export
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
Sat Oct 12 15:28:06 2002 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c: use GTK_IS_RADIO_MENU_ITEM instead
|
||||
of comparing the type directly. This handles possible subclasses
|
||||
too. (Recommended by Tim Janik)
|
||||
|
||||
Thu Oct 10 14:35:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.[ch]: Privately export
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
Sat Oct 12 15:28:06 2002 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c: use GTK_IS_RADIO_MENU_ITEM instead
|
||||
of comparing the type directly. This handles possible subclasses
|
||||
too. (Recommended by Tim Janik)
|
||||
|
||||
Thu Oct 10 14:35:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.[ch]: Privately export
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
Sat Oct 12 15:28:06 2002 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c: use GTK_IS_RADIO_MENU_ITEM instead
|
||||
of comparing the type directly. This handles possible subclasses
|
||||
too. (Recommended by Tim Janik)
|
||||
|
||||
Thu Oct 10 14:35:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.[ch]: Privately export
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
Sat Oct 12 15:28:06 2002 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c: use GTK_IS_RADIO_MENU_ITEM instead
|
||||
of comparing the type directly. This handles possible subclasses
|
||||
too. (Recommended by Tim Janik)
|
||||
|
||||
Thu Oct 10 14:35:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.[ch]: Privately export
|
||||
|
||||
@@ -1068,7 +1068,7 @@ gtk_item_factory_create_item (GtkItemFactory *ifactory,
|
||||
if (option_menu && !option_menu->menu_item)
|
||||
gtk_option_menu_set_history (option_menu, 0);
|
||||
|
||||
if (type == GTK_TYPE_RADIO_MENU_ITEM)
|
||||
if (GTK_IS_RADIO_MENU_ITEM (widget))
|
||||
gtk_radio_menu_item_set_group (GTK_RADIO_MENU_ITEM (widget), radio_group);
|
||||
if (GTK_IS_CHECK_MENU_ITEM (widget))
|
||||
gtk_check_menu_item_set_show_toggle (GTK_CHECK_MENU_ITEM (widget), TRUE);
|
||||
|
||||
Reference in New Issue
Block a user