From f77e843cdea0d5c33f88076f213256abdac73484 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sat, 20 Nov 2010 17:27:35 +0200 Subject: [PATCH] * mug: fix source code checks --- toys/mug/mug-msg-view.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/toys/mug/mug-msg-view.c b/toys/mug/mug-msg-view.c index 9bb40901..cf2228ea 100644 --- a/toys/mug/mug-msg-view.c +++ b/toys/mug/mug-msg-view.c @@ -130,10 +130,8 @@ create_table (MugMsgViewPrivate *priv, const HeaderInfo *hinfo, guint num) gtk_label_set_markup (GTK_LABEL(l), str); g_free (str); - gtk_table_attach (GTK_TABLE(table), l, - 0, 1, i, i+1, - GTK_FILL, GTK_FILL, - 0, 0); + gtk_table_attach (GTK_TABLE(table), l, 0, 1, i, i+1, + GTK_FILL, GTK_FILL, 0, 0); l = priv->_headervals[hinfo[i].row] = gtk_label_new (NULL); al = gtk_alignment_new(0.0, 0.0, 0.0, 0.0); @@ -144,8 +142,7 @@ create_table (MugMsgViewPrivate *priv, const HeaderInfo *hinfo, guint num) gtk_container_add (GTK_CONTAINER(al), l); gtk_label_set_justify (GTK_LABEL(l), GTK_JUSTIFY_LEFT); gtk_table_attach (GTK_TABLE(table), al, - 1, 2, i, i+1, - GTK_FILL, GTK_FILL, + 1, 2, i, i+1, GTK_FILL, GTK_FILL, 0, 0); }