diff options
author | Manish Singh <yosh@gimp.org> | 2002-10-12 22:45:08 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 2002-10-12 22:45:08 +0000 |
commit | 4cd4889e11588d14f9119907dbde4add3d429be4 (patch) | |
tree | 9135f280f8ce680e1c63b56c79f50129061a6b0b /gtk/gtkitemfactory.c | |
parent | f18d5d35104bf4cb3998dfbee43f056649cb24b2 (diff) | |
download | gtk+-4cd4889e11588d14f9119907dbde4add3d429be4.tar.gz |
use GTK_IS_RADIO_MENU_ITEM instead of comparing the type directly. This
Sat Oct 12 15:44:29 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)
Diffstat (limited to 'gtk/gtkitemfactory.c')
-rw-r--r-- | gtk/gtkitemfactory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkitemfactory.c b/gtk/gtkitemfactory.c index a3abcc9f5b..5df097ae4f 100644 --- a/gtk/gtkitemfactory.c +++ b/gtk/gtkitemfactory.c @@ -1070,7 +1070,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); |