stylepropertyimpl: Remove double assignment

This commit is contained in:
Timm Bäder 2016-07-14 21:09:25 +02:00
parent e3bbeb48bd
commit 73b949173e

View File

@ -263,7 +263,7 @@ static GtkCssValue *
font_family_assign (GtkCssStyleProperty *property,
const GValue *value)
{
const char **names = g_value_get_boxed (value);
const char **names;
GtkCssValue *result;
GPtrArray *array;