From 70bbf2c088b424b1d58c2d18c875c63ea1de0376 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 9 Jan 2011 09:29:11 -0500 Subject: ETree: Fix runtime warnings with GTK3. ETable has a "vertical-spacing" style property, ETree does not. ECellText expects it to be in both. --- widgets/table/e-table.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'widgets/table/e-table.c') diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index 4cbd6556af..4dc13bfb1a 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -3513,15 +3513,16 @@ e_table_class_init (ETableClass *class) E_TABLE_MODEL_TYPE, G_PARAM_READABLE)); - gtk_widget_class_install_style_property (widget_class, - g_param_spec_int ("vertical-spacing", - "Vertical Row Spacing", - "Vertical space between rows. It is added to top and to bottom of a row", - 0, - G_MAXINT, - 3, - G_PARAM_READABLE | - G_PARAM_STATIC_STRINGS)); + gtk_widget_class_install_style_property ( + widget_class, + g_param_spec_int ( + "vertical-spacing", + "Vertical Row Spacing", + "Vertical space between rows. " + "It is added to top and to bottom of a row", + 0, G_MAXINT, 3, + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); gal_a11y_e_table_init (); } -- cgit v1.2.3