diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-30 23:27:32 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-30 23:27:32 +0800 |
commit | cea90a9fdf73a3e1ae7de837e64d6e2c74acfb80 (patch) | |
tree | b6f6f7353295b3f00150218235c54a2c3d37883f /addressbook/printing | |
parent | 336efb38c6245c06f48704a0f0c07693bf58f9ee (diff) | |
download | gsoc2013-evolution-cea90a9fdf73a3e1ae7de837e64d6e2c74acfb80.tar gsoc2013-evolution-cea90a9fdf73a3e1ae7de837e64d6e2c74acfb80.tar.gz gsoc2013-evolution-cea90a9fdf73a3e1ae7de837e64d6e2c74acfb80.tar.bz2 gsoc2013-evolution-cea90a9fdf73a3e1ae7de837e64d6e2c74acfb80.tar.lz gsoc2013-evolution-cea90a9fdf73a3e1ae7de837e64d6e2c74acfb80.tar.xz gsoc2013-evolution-cea90a9fdf73a3e1ae7de837e64d6e2c74acfb80.tar.zst gsoc2013-evolution-cea90a9fdf73a3e1ae7de837e64d6e2c74acfb80.zip |
Made double clicking create a new card. Set the empty message.
2000-05-30 Christopher James Lahey <clahey@helixcode.com>
* 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
Diffstat (limited to 'addressbook/printing')
-rw-r--r-- | addressbook/printing/e-contact-print.c | 4 | ||||
-rw-r--r-- | addressbook/printing/medbook.ecps | 8 |
2 files changed, 6 insertions, 6 deletions
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 @@ <title/> <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/> |