diff options
author | Alex Larsson <alexl@redhat.com> | 2001-11-19 02:23:56 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2001-11-19 02:23:56 +0000 |
commit | ecbfe81b065bd074e302df32e2e22a5ebd48b7af (patch) | |
tree | 6bd2d85ac10c257a50ffde9bfb2b0bacb80d7dfd /gdk | |
parent | e4be2240b7a9709919c6e417a8b31b28014e3233 (diff) | |
download | gtk+-ecbfe81b065bd074e302df32e2e22a5ebd48b7af.tar.gz |
Update to new Pango API.
2001-11-18 Alex Larsson <alexl@redhat.com>
* gdk/x11/gdkfont-x11.c (gdk_font_from_description):
Update to new Pango API.
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/x11/gdkfont-x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/x11/gdkfont-x11.c b/gdk/x11/gdkfont-x11.c index 1115c011ba..4cf8a4d747 100644 --- a/gdk/x11/gdkfont-x11.c +++ b/gdk/x11/gdkfont-x11.c @@ -209,7 +209,7 @@ gdk_font_from_description (PangoFontDescription *font_desc) g_return_val_if_fail (font_desc != NULL, NULL); font_map = pango_x_font_map_for_display (GDK_DISPLAY ()); - font = pango_font_map_load_font (font_map, font_desc); + font = pango_font_map_load_font (font_map, NULL, font_desc); if (font) { |