blob: 168e15c413d3e74ea7e894210abd4ab17e5980e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- libmergeant/mg-form.c.orig Thu Aug 12 22:24:32 2004
+++ libmergeant/mg-form.c Thu Aug 12 22:24:48 2004
@@ -586,6 +586,7 @@
{
PangoAttrList *attrs = NULL;
PangoAttribute *att;
+ GSList *list;
if (show_mark) {
attrs = pango_attr_list_new ();
@@ -595,7 +596,7 @@
pango_attr_list_insert (attrs, att);
}
- GSList *list = form->priv->not_null_labels;
+ list = form->priv->not_null_labels;
while (list) {
gtk_label_set_attributes (GTK_LABEL (list->data), attrs);
list = g_slist_next (list);
|