From cea90a9fdf73a3e1ae7de837e64d6e2c74acfb80 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Tue, 30 May 2000 15:27:32 +0000 Subject: Made double clicking create a new card. Set the empty message. 2000-05-30 Christopher James Lahey * gui/minicard/e-minicard-view.c: Made double clicking create a new card. Set the empty message. * gui/minicard/e-minicard.c: Made sorting be case insensitive. * gui/minicard/e-reflow-sorted.c, e-reflow.c, e-reflow.h: Added a message for when the reflow is empty. * printing/e-contact-print.c, printing/medbook.ecps: Made the default printout be full page. Made sorting case insensitive. svn path=/trunk/; revision=3281 --- addressbook/printing/e-contact-print.c | 4 ++-- addressbook/printing/medbook.ecps | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'addressbook/printing') diff --git a/addressbook/printing/e-contact-print.c b/addressbook/printing/e-contact-print.c index f03f1389b4..aeb9cfee58 100644 --- a/addressbook/printing/e-contact-print.c +++ b/addressbook/printing/e-contact-print.c @@ -575,7 +575,7 @@ card_compare (ECard *card1, ECard *card2) { "file_as", &file_as2, NULL); if (file_as1 && file_as2) - return strcmp(file_as1, file_as2); + return strcasecmp(file_as1, file_as2); if (file_as1) return -1; if (file_as2) @@ -876,7 +876,7 @@ e_contact_build_style(EContactPrintStyle *style) style->center_footer = g_strdup(""); style->right_footer = g_strdup(""); style->reverse_on_even_pages = FALSE; - filename = g_concat_dir_and_file(EVOLUTION_ECPSDIR, "smallbook.ecps"); + filename = g_concat_dir_and_file(EVOLUTION_ECPSDIR, "medbook.ecps"); styledoc = xmlParseFile(filename); g_free(filename); if (styledoc) { diff --git a/addressbook/printing/medbook.ecps b/addressbook/printing/medbook.ecps index 2031f39b92..72cca146dd 100644 --- a/addressbook/printing/medbook.ecps +++ b/addressbook/printing/medbook.ecps @@ -2,11 +2,11 @@ <type>cards</type> <sections_start_new_page>FALSE</sections_start_new_page> -<num_columns>1</num_columns> +<num_columns>2</num_columns> <blank_forms>2</blank_forms> <letter_tabs>TRUE</letter_tabs> <letter_headings>TRUE</letter_headings> -<headings_font>Helvetica-Bold 10</headings_font> +<headings_font>Helvetica-Bold 12</headings_font> <body_font>Helvetica 8</body_font> <print_using_grey>TRUE</print_using_grey> <paper_width>8.5</paper_width> @@ -15,8 +15,8 @@ <left_margin>0.5</left_margin> <bottom_margin>0.5</bottom_margin> <right_margin>0.5</right_margin> -<page_width>4.25</page_width> -<page_height>5.5</page_height> +<page_width>8.5</page_width> +<page_height>11</page_height> <orientation>portrait</orientation> <header_font>Helvetica 8</header_font> <left_header/> -- cgit v1.2.3