aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-group-container.c
diff options
context:
space:
mode:
authorKaushal Kumar <kakumar@novell.com>2005-10-14 19:12:48 +0800
committerKaushal Kumar <kaushal@src.gnome.org>2005-10-14 19:12:48 +0800
commit9e2a8d4e41b397f054948d739a94ce1db760ce55 (patch)
tree8ae45e8fba4f24939d6324df080ac01f9fbab7df /widgets/table/e-table-group-container.c
parent85f2509163286084a6d28422d8b15f9d3fce12cf (diff)
downloadgsoc2013-evolution-9e2a8d4e41b397f054948d739a94ce1db760ce55.tar
gsoc2013-evolution-9e2a8d4e41b397f054948d739a94ce1db760ce55.tar.gz
gsoc2013-evolution-9e2a8d4e41b397f054948d739a94ce1db760ce55.tar.bz2
gsoc2013-evolution-9e2a8d4e41b397f054948d739a94ce1db760ce55.tar.lz
gsoc2013-evolution-9e2a8d4e41b397f054948d739a94ce1db760ce55.tar.xz
gsoc2013-evolution-9e2a8d4e41b397f054948d739a94ce1db760ce55.tar.zst
gsoc2013-evolution-9e2a8d4e41b397f054948d739a94ce1db760ce55.zip
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
Diffstat (limited to 'widgets/table/e-table-group-container.c')
-rw-r--r--widgets/table/e-table-group-container.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-group-container.c b/widgets/table/e-table-group-container.c
index eed9fe0d04..1caeb77a22 100644
--- a/widgets/table/e-table-group-container.c
+++ b/widgets/table/e-table-group-container.c
@@ -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;