diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-11-07 05:56:52 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-11-07 05:56:52 +0800 |
commit | 9c651d480e354610f80f18b9af73bb3401745f59 (patch) | |
tree | daa4c8fd7b763f44d44fbe3b1c31611010894887 /addressbook/printing/e-contact-print-envelope.c | |
parent | a2dda6941a6f6012a41833fd0c928b5a1fa0cd29 (diff) | |
download | gsoc2013-evolution-9c651d480e354610f80f18b9af73bb3401745f59.tar.gz gsoc2013-evolution-9c651d480e354610f80f18b9af73bb3401745f59.tar.zst gsoc2013-evolution-9c651d480e354610f80f18b9af73bb3401745f59.zip |
Switched from EAddressbookSearch to ESearchBar.
2000-11-06 Christopher James Lahey <clahey@helixcode.com>
* gui/component/addressbook.c: Switched from EAddressbookSearch to
ESearchBar.
* gui/widgets/Makefile.am, gui/widgets/e-addressbook-search.c,
gui/widgets/e-addressbook-search.h: Removed EAddressbookSearch.
This has been moved to filter/ and renamed ESearchBar.
* printing/e-contact-print-envelope.c: Forgot to set the font.
This works for me now.
svn path=/trunk/; revision=6455
Diffstat (limited to 'addressbook/printing/e-contact-print-envelope.c')
-rw-r--r-- | addressbook/printing/e-contact-print-envelope.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/addressbook/printing/e-contact-print-envelope.c b/addressbook/printing/e-contact-print-envelope.c index c702728e4e..5a2c695582 100644 --- a/addressbook/printing/e-contact-print-envelope.c +++ b/addressbook/printing/e-contact-print-envelope.c @@ -114,6 +114,7 @@ static void ecpe_linelist_print(GnomePrintContext *pc, GnomeFont *font, char *address, EcpeLine *linelist, double x, double y) { int i; + gnome_print_setfont(pc, font); for (i = 0; linelist[i].length != -1; i++) { gnome_print_moveto(pc, x, y + gnome_font_get_ascender(font)); gnome_print_show_sized (pc, address + linelist[i].start, linelist[i].length); |