diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | pango/pango-font.h | 2 |
2 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,13 @@ 2007-10-24 Behdad Esfahbod <behdad@gnome.org> + Bug 472303 – Make PANGO_GLYPH_EMPTY and PANGO_GLYPH_UNKNOWN_FLAG public + + * pango/pango-font.h: Make PANGO_GLYPH_EMPTY, PANGO_GLYPH_UNKNOWN_FLAG, + and PANGO_GET_UNKNOWN_GLYPH() public. Previously they were only + defined for backend/engine implementations. + +2007-10-24 Behdad Esfahbod <behdad@gnome.org> + Bug 471601 – Pass pango version information to fontconfig * pango/pangofc-fontmap.h: diff --git a/pango/pango-font.h b/pango/pango-font.h index 0411fb02..1309c557 100644 --- a/pango/pango-font.h +++ b/pango/pango-font.h @@ -371,11 +371,9 @@ struct _PangoFontClass #endif /* PANGO_ENABLE_BACKEND */ -#if defined(PANGO_ENABLE_ENGINE) || defined(PANGO_ENABLE_BACKEND) #define PANGO_GLYPH_EMPTY ((PangoGlyph)0x0FFFFFFF) #define PANGO_GLYPH_UNKNOWN_FLAG ((PangoGlyph)0x10000000) #define PANGO_GET_UNKNOWN_GLYPH(wc) ((PangoGlyph)(wc)|PANGO_GLYPH_UNKNOWN_FLAG) -#endif G_END_DECLS |