diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-10-30 09:33:03 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-10-30 09:33:03 +0800 |
commit | 11de06a775a47ed6eae672b82e1fbf143550af29 (patch) | |
tree | 173f0c71d50d1ac5c239051233761ee51fbee640 /addressbook/gui/widgets | |
parent | b14590968a2d3fe382797c608046afdeb93538b8 (diff) | |
download | gsoc2013-evolution-11de06a775a47ed6eae672b82e1fbf143550af29.tar gsoc2013-evolution-11de06a775a47ed6eae672b82e1fbf143550af29.tar.gz gsoc2013-evolution-11de06a775a47ed6eae672b82e1fbf143550af29.tar.bz2 gsoc2013-evolution-11de06a775a47ed6eae672b82e1fbf143550af29.tar.lz gsoc2013-evolution-11de06a775a47ed6eae672b82e1fbf143550af29.tar.xz gsoc2013-evolution-11de06a775a47ed6eae672b82e1fbf143550af29.tar.zst gsoc2013-evolution-11de06a775a47ed6eae672b82e1fbf143550af29.zip |
Check that our BonoboUIComponent has a container so we don't get a lot of
2001-10-29 Jon Trowbridge <trow@ximian.com>
* gui/component/addressbook.c (update_command_state): Check that
our BonoboUIComponent has a container so we don't get a lot of
annoying debug spew.
* printing/smallbook.ecps: Fixed fonts.
* printing/phonelist.ecps: Fixed fonts.
* printing/medbook.ecps: Fixed fonts.
* printing/e-contact-print.c (e_contact_get_card_size): Commented
out spew.
* gui/widgets/e-minicard.c (remodel): Check that e_minicard->card
!= NULL.
svn path=/trunk/; revision=14391
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/e-minicard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/widgets/e-minicard.c b/addressbook/gui/widgets/e-minicard.c index 8991d8c757..db111b4ac7 100644 --- a/addressbook/gui/widgets/e-minicard.c +++ b/addressbook/gui/widgets/e-minicard.c @@ -812,7 +812,7 @@ remodel( EMinicard *e_minicard ) g_free(file_as); } - if ( e_card_evolution_list (e_minicard->card) ) { + if (e_minicard->card && e_card_evolution_list (e_minicard->card) ) { gnome_canvas_item_show (e_minicard->list_icon); } else { |