Use gnome_font_find_closest instead of gnome_font_find since Helvetica is

2005-10-14  Kaushal Kumar  <kakumar@novell.com>

        * table/e-table-group-container.c
        (e_table_group_container_print_page): Use gnome_font_find_closest
        instead of gnome_font_find since Helvetica is not always present.

        Fixes bug #246803.
        Patch by: Mubeen Jukaku.

svn path=/trunk/; revision=30506
This commit is contained in:
Kaushal Kumar
2005-10-14 11:12:48 +00:00
committed by Kaushal Kumar
parent 85f2509163
commit 9e2a8d4e41
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2005-10-14 Kaushal Kumar <kakumar@novell.com>
* table/e-table-group-container.c
(e_table_group_container_print_page): Use gnome_font_find_closest
instead of gnome_font_find since Helvetica is not always present.
Fixes bug #246803.
Patch by: Mubeen Jukaku.
2005-10-04 Devashish Sharma <sdevashish@novell.com>
* e-table-extras.c (ete_init): Added compare type "stringcase" to

View File

@ -1159,7 +1159,7 @@ e_table_group_container_print_page (EPrintable *ep,
GList *child;
EPrintable *child_printable;
gchar *string;
GnomeFont *font = gnome_font_find ("Helvetica", TEXT_HEIGHT);
GnomeFont *font = gnome_font_find_closest ("Helvetica", TEXT_HEIGHT);
child_printable = groupcontext->child_printable;
child = groupcontext->child;