diff options
author | Radek Doulik <rodo@ximian.com> | 2004-05-26 23:56:58 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2004-05-26 23:56:58 +0800 |
commit | 0ebfe907f6674babd7c79f1cefda849bfe90b2a4 (patch) | |
tree | bad10770fcc00e97edd6de233eb741586a5476f7 /addressbook | |
parent | 2efb90d0bc2a1a564c59dfea19a84a334768f285 (diff) | |
download | gsoc2013-evolution-0ebfe907f6674babd7c79f1cefda849bfe90b2a4.tar.gz gsoc2013-evolution-0ebfe907f6674babd7c79f1cefda849bfe90b2a4.tar.zst gsoc2013-evolution-0ebfe907f6674babd7c79f1cefda849bfe90b2a4.zip |
update spell errors
2004-05-26 Radek Doulik <rodo@ximian.com>
* htmltext.c (html_text_op_copy_helper): update spell errors
Fixes #50829
svn path=/trunk/; revision=26103
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 8 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 6d458c194c..219eefec22 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,11 @@ +2004-05-26 Radek Doulik <rodo@ximian.com> + + * gui/widgets/e-addressbook-view.c (e_contact_print_button): call + gnome_print_beginpage + (e_contact_print_button): call gnome_print_beginpage + + Fixes #58977 + 2004-05-25 Chris Toshok <toshok@ximian.com> * gui/component/select-names/e-select-names-text-model.c diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index b5a98c5a49..a842d3040e 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -1739,6 +1739,7 @@ e_contact_print_button(GtkDialog *dialog, gint response, gpointer data) pc = gnome_print_job_get_context( master ); e_printable_reset(printable); while (e_printable_data_left(printable)) { + gnome_print_beginpage (pc, "Contacts"); if (gnome_print_gsave(pc) == -1) /* FIXME */; if (gnome_print_translate(pc, 72, 72) == -1) @@ -1763,6 +1764,7 @@ e_contact_print_button(GtkDialog *dialog, gint response, gpointer data) pc = gnome_print_job_get_context( master ); e_printable_reset(printable); while (e_printable_data_left(printable)) { + gnome_print_beginpage (pc, "Contacts"); if (gnome_print_gsave(pc) == -1) /* FIXME */; if (gnome_print_translate(pc, 72, 72) == -1) |