aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/e-minicard.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2003-04-04 06:34:55 +0800
committerChris Toshok <toshok@src.gnome.org>2003-04-04 06:34:55 +0800
commit660514490cade113a6f4627ef138c38cddea8d8e (patch)
treea42cc11b385e863d521db9d7033dcaa18697951e /addressbook/gui/widgets/e-minicard.c
parent0b48a811d04d7fb29e60bb1e3168f9479992d3b7 (diff)
downloadgsoc2013-evolution-660514490cade113a6f4627ef138c38cddea8d8e.tar
gsoc2013-evolution-660514490cade113a6f4627ef138c38cddea8d8e.tar.gz
gsoc2013-evolution-660514490cade113a6f4627ef138c38cddea8d8e.tar.bz2
gsoc2013-evolution-660514490cade113a6f4627ef138c38cddea8d8e.tar.lz
gsoc2013-evolution-660514490cade113a6f4627ef138c38cddea8d8e.tar.xz
gsoc2013-evolution-660514490cade113a6f4627ef138c38cddea8d8e.tar.zst
gsoc2013-evolution-660514490cade113a6f4627ef138c38cddea8d8e.zip
[ fixes bug #40715 ] add this callback, to unref the book/free the closure
2003-04-03 Chris Toshok <toshok@ximian.com> [ fixes bug #40715 ] * gui/merging/e-card-merging.c (final_id_cb): add this callback, to unref the book/free the closure after calling the user's callback. (final_cb): same. (doit): use final{_id}_cb (cancelit): same. (response): don't free the lookup struct here. (match_query_callback): same. (e_card_merging_book_add_card): ref the book. (e_card_merging_book_commit_card): same. * gui/component/e-address-popup.c (card_picker_init): make sure to set the "text" attribute on the cell renderer so the text actually shows up. also, g_object_connect -> g_signal_connect *sigh*. Lastly, get rid of the scrolled window and just make the window size to show the text. * gui/widgets/e-minicard.c (e_minicard_style_set): only call set_selected if we're realized (we create all the canvas objects that set_selected manipulates in our realize method.) svn path=/trunk/; revision=20662
Diffstat (limited to 'addressbook/gui/widgets/e-minicard.c')
-rw-r--r--addressbook/gui/widgets/e-minicard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/addressbook/gui/widgets/e-minicard.c b/addressbook/gui/widgets/e-minicard.c
index 15ecbf05f3..bb9234083d 100644
--- a/addressbook/gui/widgets/e-minicard.c
+++ b/addressbook/gui/widgets/e-minicard.c
@@ -448,7 +448,8 @@ e_minicard_finalize (GObject *object)
static void
e_minicard_style_set (EMinicard *minicard, GtkStyle *previous_style)
{
- set_selected (minicard, minicard->selected);
+ if ( (GTK_OBJECT_FLAGS( minicard ) & GNOME_CANVAS_ITEM_REALIZED) )
+ set_selected (minicard, minicard->selected);
}
static void