From 2140a498a2f0ee2941f26c673740ee08d49613da Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Sun, 18 Sep 2011 10:23:01 +0200 Subject: [PATCH] StTable: Silence row_span warning for now This seems to be very noisy and generally harmless so silence it up for now. https://bugzilla.gnome.org/show_bug.cgi?id=658939 --- src/st/st-table.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/st/st-table.c b/src/st/st-table.c index b736a5426..33590b22c 100644 --- a/src/st/st-table.c +++ b/src/st/st-table.c @@ -641,9 +641,10 @@ st_table_preferred_allocate (ClutterActor *self, */ if (col + col_span > priv->n_cols) g_warning ("StTable: col-span exceeds number of columns"); +#if 0 if (row + row_span > priv->n_rows) g_warning ("StTable: row-span exceeds number of rows"); - +#endif if (col_span > 1) { for (i = col + 1; i < col + col_span && i < priv->n_cols; i++)