[gnome-shell] StTable: Silence row_span warning for now
- From: Adel Gadllah <agadllah src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] StTable: Silence row_span warning for now
- Date: Mon, 19 Sep 2011 19:25:14 +0000 (UTC)
commit 2140a498a2f0ee2941f26c673740ee08d49613da
Author: Adel Gadllah <adel gadllah gmail com>
Date: Sun Sep 18 10:23:01 2011 +0200
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 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/st/st-table.c b/src/st/st-table.c
index b736a54..33590b2 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++)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]