diff options
author | Owen Taylor <otaylor@redhat.com> | 2005-02-03 21:20:42 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2005-02-03 21:20:42 +0000 |
commit | f31d96cadb2e463759de8de51036882ac1342bde (patch) | |
tree | 366e03a5bf0d9313cba666d0186d1cb554ef9d4f | |
parent | 7782bba2c87b79bff8fa4e62ed84b95b74574617 (diff) | |
download | pango-f31d96cadb2e463759de8de51036882ac1342bde.tar.gz |
Bump to 1.9.0.
2005-02-03 Owen Taylor <otaylor@redhat.com>
* configure.in: Bump to 1.9.0.
* pango/pangofc-fontmap.h: Document PangoFcFontMap.create_font()
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 6 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | pango/pangofc-fontmap.h | 11 |
4 files changed, 22 insertions, 3 deletions
@@ -1,5 +1,11 @@ 2005-02-03 Owen Taylor <otaylor@redhat.com> + * configure.in: Bump to 1.9.0. + + * pango/pangofc-fontmap.h: Document PangoFcFontMap.create_font() + +2005-02-03 Owen Taylor <otaylor@redhat.com> + * examples/cairosimple.c: Open the file with mode "wb", include cairo-png.h. diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index 8dea16f5..e22d70d2 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,5 +1,11 @@ 2005-02-03 Owen Taylor <otaylor@redhat.com> + * configure.in: Bump to 1.9.0. + + * pango/pangofc-fontmap.h: Document PangoFcFontMap.create_font() + +2005-02-03 Owen Taylor <otaylor@redhat.com> + * examples/cairosimple.c: Open the file with mode "wb", include cairo-png.h. diff --git a/configure.in b/configure.in index d5adf9e7..b62ad658 100644 --- a/configure.in +++ b/configure.in @@ -21,7 +21,7 @@ dnl dnl The triplet m4_define([pango_major_version], [1]) -m4_define([pango_minor_version], [8]) +m4_define([pango_minor_version], [9]) m4_define([pango_micro_version], [0]) m4_define([pango_version], [pango_major_version.pango_minor_version.pango_micro_version]) diff --git a/pango/pangofc-fontmap.h b/pango/pangofc-fontmap.h index 925a1467..3cc87512 100644 --- a/pango/pangofc-fontmap.h +++ b/pango/pangofc-fontmap.h @@ -67,12 +67,19 @@ struct _PangoFcFontMap * @new_font: Creates a new #PangoFcFont for the specified * pattern of the appropriate type for this font map. The * @pattern argument must be passed to the "pattern" property - * of #PangoFcFont when you call g_object_new() + * of #PangoFcFont when you call g_object_new(). Deprecated + * in favor of @create_font(). * @get_render_key: Given a context and font description, * calculate a "key" of X and Y sizes and a flags word * that can be used to hash the results of loading a font * with that information. If %NULL, a default implementation - is used. + * is used. + * @create_font: Creates a new #PangoFcFont for the specified + * pattern of the appropriate type for this font map using + * information from the context that is passed in. The + * @pattern argument must be passed to the "pattern" property + * of #PangoFcFont when you call g_object_new(). Deprecated + * in favor of @create_font(). If %NULL, new_font() is used. * * Class structure for #PangoFcFontMap. **/ |