GtkFontSelection: don't notify the non-existent "font" property

The "font" property was removed in 418d84f311.
Closes: bgo#627580
This commit is contained in:
Philip Withnall 2010-08-21 17:49:03 +01:00
parent 4ef5035674
commit df5ade16ab

View File

@ -1528,10 +1528,7 @@ gtk_font_selection_set_font_name (GtkFontSelection *fontsel,
pango_font_description_free (new_desc);
g_object_freeze_notify (G_OBJECT (fontsel));
g_object_notify (G_OBJECT (fontsel), "font-name");
g_object_notify (G_OBJECT (fontsel), "font");
g_object_thaw_notify (G_OBJECT (fontsel));
return TRUE;
}