diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-07-18 16:22:35 -0700 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-07-18 16:23:19 -0700 |
commit | c80f0fcf71fd67c6b06039de37bc67e3ecace931 (patch) | |
tree | 461cc017dbd4a3b7392aa232ff117ed8728a7652 /pango/pangowin32.c | |
parent | fdd9e9e707e42131e7749d8674c59f57e0923a35 (diff) | |
download | pango-c80f0fcf71fd67c6b06039de37bc67e3ecace931.tar.gz |
Make hb fonts immutable in the frontend
It makes more sense to do this in the frontend
that hands the objects out, rather than in each
backend implementation.
Diffstat (limited to 'pango/pangowin32.c')
-rw-r--r-- | pango/pangowin32.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pango/pangowin32.c b/pango/pangowin32.c index 0e877820..32f050e2 100644 --- a/pango/pangowin32.c +++ b/pango/pangowin32.c @@ -1990,7 +1990,5 @@ pango_win32_font_create_hb_font (PangoFont *font) hb_font_set_scale (hb_font, win32font->size, win32font->size); hb_face_destroy (face); - hb_font_make_immutable (hb_font); - return hb_font; } |