File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -234,20 +234,20 @@ static void
234
234
update_style_contexts (MetaFrames * frames )
235
235
{
236
236
GtkStyleContext * style ;
237
- GList * variants , * variant ;
237
+ GList * variant_list , * variant ;
238
238
239
239
if (frames -> normal_style )
240
240
g_object_unref (frames -> normal_style );
241
241
frames -> normal_style = create_style_context (frames , NULL );
242
242
243
- variants = g_hash_table_get_keys (frames -> style_variants );
244
- for (variant = variants ; variant ; variant = variants -> next )
243
+ variant_list = g_hash_table_get_keys (frames -> style_variants );
244
+ for (variant = variant_list ; variant ; variant = variant -> next )
245
245
{
246
246
style = create_style_context (frames , (char * )variant -> data );
247
247
g_hash_table_insert (frames -> style_variants ,
248
248
g_strdup (variant -> data ), style );
249
249
}
250
- g_list_free (variants );
250
+ g_list_free (variant_list );
251
251
}
252
252
253
253
static void
You can’t perform that action at this time.
0 commit comments