diff --git a/ChangeLog b/ChangeLog index 89704409f..3f2c7cf6d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install "draw_as_radio" as a separate property, not as an alias of "inconsistent". + (gtk_check_menu_item_get_property): + (gtk_check_menu_item_set_property): Also support "draw_as_radio". Fri Aug 29 20:32:07 2003 Soeren Sandmann diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 89704409f..3f2c7cf6d 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -2,6 +2,8 @@ * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install "draw_as_radio" as a separate property, not as an alias of "inconsistent". + (gtk_check_menu_item_get_property): + (gtk_check_menu_item_set_property): Also support "draw_as_radio". Fri Aug 29 20:32:07 2003 Soeren Sandmann diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 89704409f..3f2c7cf6d 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -2,6 +2,8 @@ * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install "draw_as_radio" as a separate property, not as an alias of "inconsistent". + (gtk_check_menu_item_get_property): + (gtk_check_menu_item_set_property): Also support "draw_as_radio". Fri Aug 29 20:32:07 2003 Soeren Sandmann diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 89704409f..3f2c7cf6d 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -2,6 +2,8 @@ * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install "draw_as_radio" as a separate property, not as an alias of "inconsistent". + (gtk_check_menu_item_get_property): + (gtk_check_menu_item_set_property): Also support "draw_as_radio". Fri Aug 29 20:32:07 2003 Soeren Sandmann diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 89704409f..3f2c7cf6d 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -2,6 +2,8 @@ * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install "draw_as_radio" as a separate property, not as an alias of "inconsistent". + (gtk_check_menu_item_get_property): + (gtk_check_menu_item_set_property): Also support "draw_as_radio". Fri Aug 29 20:32:07 2003 Soeren Sandmann diff --git a/gtk/gtkcheckmenuitem.c b/gtk/gtkcheckmenuitem.c index d7593a39e..75db42a7f 100644 --- a/gtk/gtkcheckmenuitem.c +++ b/gtk/gtkcheckmenuitem.c @@ -494,6 +494,9 @@ gtk_check_menu_item_get_property (GObject *object, case PROP_INCONSISTENT: g_value_set_boolean (value, checkitem->inconsistent); break; + case PROP_DRAW_AS_RADIO: + g_value_set_boolean (value, checkitem->draw_as_radio); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; @@ -517,6 +520,9 @@ gtk_check_menu_item_set_property (GObject *object, case PROP_INCONSISTENT: gtk_check_menu_item_set_inconsistent (checkitem, g_value_get_boolean (value)); break; + case PROP_DRAW_AS_RADIO: + gtk_check_menu_item_set_draw_as_radio (checkitem, g_value_get_boolean (value)); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break;