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/e-contact-print.c | |
parent | 336efb38c6245c06f48704a0f0c07693bf58f9ee (diff) | |
download | gsoc2013-evolution-cea90a9fdf73a3e1ae7de837e64d6e2c74acfb80.tar.gz 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/e-contact-print.c')
-rw-r--r-- | addressbook/printing/e-contact-print.c | 4 |
1 files changed, 2 insertions, 2 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) { |