* mug: fix source code checks

This commit is contained in:
Dirk-Jan C. Binnema 2010-11-20 17:27:35 +02:00
parent 5818c40d7f
commit f77e843cde
1 changed files with 3 additions and 6 deletions

View File

@ -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);
}