diff options
author | Timm Bäder <mail@baedert.org> | 2016-10-04 19:53:36 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-10-16 18:17:21 +0200 |
commit | 601839c8251950e6ac8f66ae225f8143e08e3867 (patch) | |
tree | 011d08403226f7d9a76caee0e316a6cffc51ebc4 /gtk/gtkcheckbutton.c | |
parent | feac88dc5294a76da918836623779a313097eb14 (diff) | |
download | gtk+-601839c8251950e6ac8f66ae225f8143e08e3867.tar.gz |
Remove various sizing related style properties
Diffstat (limited to 'gtk/gtkcheckbutton.c')
-rw-r--r-- | gtk/gtkcheckbutton.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gtk/gtkcheckbutton.c b/gtk/gtkcheckbutton.c index 8b48463327..6cb6446863 100644 --- a/gtk/gtkcheckbutton.c +++ b/gtk/gtkcheckbutton.c @@ -221,22 +221,6 @@ gtk_check_button_class_init (GtkCheckButtonClass *class) container_class->remove = gtk_check_button_remove; /** - * GtkCheckButton:indicator-size: - * - * The size of the indicator. - * - * Deprecated: 3.20: Use CSS min-width and min-height on the indicator node. - */ - gtk_widget_class_install_style_property (widget_class, - g_param_spec_int ("indicator-size", - P_("Indicator Size"), - P_("Size of check or radio indicator"), - 0, - G_MAXINT, - INDICATOR_SIZE, - GTK_PARAM_READABLE|G_PARAM_DEPRECATED)); - - /** * GtkCheckButton:indicator-spacing: * * The spacing around the indicator. @@ -320,7 +304,6 @@ gtk_check_button_init (GtkCheckButton *check_button) GTK_WIDGET (check_button), priv->gadget, NULL); - gtk_builtin_icon_set_default_size_property (GTK_BUILTIN_ICON (priv->indicator_gadget), "indicator-size"); gtk_box_gadget_insert_gadget (GTK_BOX_GADGET (priv->gadget), 0, priv->indicator_gadget, FALSE, GTK_ALIGN_BASELINE); gtk_check_button_update_node_state (GTK_WIDGET (check_button)); |