summaryrefslogtreecommitdiff
path: root/gtk/gtkinfobar.c
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2016-10-04 20:16:52 +0200
committerBenjamin Otte <otte@redhat.com>2016-10-16 18:17:21 +0200
commit999d45b4e8cc8874fcbbf2f0ac0fc075081b8583 (patch)
tree13a5cf53ddab1a8c76707f7e95c8d014505d2c06 /gtk/gtkinfobar.c
parent6a6c49369e24b895a51282482daae32ef6f37eea (diff)
downloadgtk+-999d45b4e8cc8874fcbbf2f0ac0fc075081b8583.tar.gz
Remove various unused style properties
Diffstat (limited to 'gtk/gtkinfobar.c')
-rw-r--r--gtk/gtkinfobar.c70
1 files changed, 0 insertions, 70 deletions
diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c
index c925538afb..02aa7ccf7f 100644
--- a/gtk/gtkinfobar.c
+++ b/gtk/gtkinfobar.c
@@ -420,76 +420,6 @@ gtk_info_bar_class_init (GtkInfoBarClass *klass)
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
- /**
- * GtkInfoBar:content-area-border:
- *
- * The width of the border around the content
- * content area of the info bar.
- *
- * Since: 2.18
- * Deprecated: 3.6: Use gtk_container_set_border_width()
- */
- gtk_widget_class_install_style_property (widget_class,
- g_param_spec_int ("content-area-border",
- P_("Content area border"),
- P_("Width of border around the content area"),
- 0,
- G_MAXINT,
- CONTENT_AREA_DEFAULT_BORDER,
- GTK_PARAM_READABLE|G_PARAM_DEPRECATED));
-
- /**
- * GtkInfoBar:content-area-spacing:
- *
- * The default spacing used between elements of the
- * content area of the info bar.
- *
- * Since: 2.18
- * Deprecated: 3.6: Use gtk_box_set_spacing()
- */
- gtk_widget_class_install_style_property (widget_class,
- g_param_spec_int ("content-area-spacing",
- P_("Content area spacing"),
- P_("Spacing between elements of the area"),
- 0,
- G_MAXINT,
- CONTENT_AREA_DEFAULT_SPACING,
- GTK_PARAM_READABLE|G_PARAM_DEPRECATED));
-
- /**
- * GtkInfoBar:button-spacing:
- *
- * Spacing between buttons in the action area of the info bar.
- *
- * Since: 2.18
- * Deprecated: 3.6: Use gtk_box_set_spacing()
- */
- gtk_widget_class_install_style_property (widget_class,
- g_param_spec_int ("button-spacing",
- P_("Button spacing"),
- P_("Spacing between buttons"),
- 0,
- G_MAXINT,
- ACTION_AREA_DEFAULT_SPACING,
- GTK_PARAM_READABLE|G_PARAM_DEPRECATED));
-
- /**
- * GtkInfoBar:action-area-border:
- *
- * Width of the border around the action area of the info bar.
- *
- * Since: 2.18
- * Deprecated: 3.6: Use gtk_container_set_border_width()
- */
- gtk_widget_class_install_style_property (widget_class,
- g_param_spec_int ("action-area-border",
- P_("Action area border"),
- P_("Width of border around the action area"),
- 0,
- G_MAXINT,
- ACTION_AREA_DEFAULT_BORDER,
- GTK_PARAM_READABLE|G_PARAM_DEPRECATED));
-
binding_set = gtk_binding_set_by_class (klass);
gtk_binding_entry_add_signal (binding_set, GDK_KEY_Escape, 0, "close", 0);