styleproperties: Really don't use 'i' in inner loop

I apparently was too tired when doing
8cebc125da and forgot to replace one
instance of 'i' with 'j'.

Thanks Timm for finding that one.
This commit is contained in:
Benjamin Otte 2016-03-20 13:42:18 +01:00
parent e397468964
commit 710285104b

View File

@ -932,7 +932,7 @@ gtk_style_properties_merge (GtkStyleProperties *props,
array = g_value_get_boxed (_gtk_css_typed_value_get (value->value));
array_to_merge = g_value_get_boxed (_gtk_css_typed_value_get (data->value));
for (i = 0; j < array_to_merge->len; j++)
for (j = 0; j < array_to_merge->len; j++)
g_ptr_array_add (array, g_ptr_array_index (array_to_merge, j));
}
else if (replace || value->value == NULL)