diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-04-08 15:47:00 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-04-08 15:47:00 -0400 |
commit | c5921ca904f3ab25f975e4c719c7334a31d84434 (patch) | |
tree | 69a96eb9196bf17fb893c4fe3ba237e407a7ee54 /pango/pangofc-font.c | |
parent | 7a654f4999cdedf71d2c39cfa6ccf6fe2a7a8477 (diff) | |
download | pango-c5921ca904f3ab25f975e4c719c7334a31d84434.tar.gz |
[pangofc] Be more tolerant on the "fontmap" property setting
Bug 578336 – ABI breakage from 1.22 to 1.24 in fontmap field of PangoFcFont
Commit 9305b9a9995e84ace3818a90346820ef8c47a3ce introduced a "fontmap"
property in PangoFcFont and expected all subclasses to set it upon
construction. And PangoFcFontSet was changed to not set fcfont->fontmap
anymore.
Relax this change to make it backward compatible by:
1) Making "fontmap" property a not-construct-only property
2) In PangoFcFontSet, set "fontmap" if not already set
This should make it backward compatible, while allowing new code to set the
property instead of relying on PangoFcFontSet to do it.
Diffstat (limited to 'pango/pangofc-font.c')
-rw-r--r-- | pango/pangofc-font.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pangofc-font.c b/pango/pangofc-font.c index 46ce282c..e5df33d2 100644 --- a/pango/pangofc-font.c +++ b/pango/pangofc-font.c @@ -109,7 +109,7 @@ pango_fc_font_class_init (PangoFcFontClass *class) "Font Map", "The PangoFc font map this font is associated with (Since: 1.26)", PANGO_TYPE_FC_FONT_MAP, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | + G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_type_class_add_private (object_class, sizeof (PangoFcFontPrivate)); |