aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/e-addressbook-view.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2002-02-14 04:47:26 +0800
committerChris Lahey <clahey@src.gnome.org>2002-02-14 04:47:26 +0800
commit32a1a69f13932b9304a937ca0cb39102d425bc93 (patch)
tree86c1eb93cc4b6053916a677e1183fdfe046aa824 /addressbook/gui/widgets/e-addressbook-view.c
parent9f1ec16fffe3bdaa9ee4ecf0b3111f55e510decc (diff)
downloadgsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar.gz
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar.bz2
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar.lz
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar.xz
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar.zst
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.zip
Attach to the emvw instead of the emv here.
2002-02-13 Christopher James Lahey <clahey@ximian.com> * gui/widgets/e-addressbook-view.c (display_view): Attach to the emvw instead of the emv here. * gui/widgets/e-minicard-view-widget.c, e-minicard-view-widget.h: Made this object have a "column_width" argument and a "column_width_changed" signal which are a simple layer down to the EMinicardView contained within. * gui/widgets/gal-view-minicard.c, gui/widgets/gal-view-minicard.h (gal_view_minicard_attach): Made this attach to an EMinicardViewWidget instead of a EMinicardView. svn path=/trunk/; revision=15714
Diffstat (limited to 'addressbook/gui/widgets/e-addressbook-view.c')
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c
index 93da4c8c29..1679c95392 100644
--- a/addressbook/gui/widgets/e-addressbook-view.c
+++ b/addressbook/gui/widgets/e-addressbook-view.c
@@ -468,8 +468,7 @@ display_view(GalViewInstance *instance,
gal_view_etable_attach_table (GAL_VIEW_ETABLE(view), e_table_scrolled_get_table(E_TABLE_SCROLLED(address_view->widget)));
} else if (GAL_IS_VIEW_MINICARD(view)) {
change_view_type (address_view, E_ADDRESSBOOK_VIEW_MINICARD);
- if (address_view->object && E_MINICARD_VIEW_WIDGET (address_view->object)->emv)
- gal_view_minicard_attach (GAL_VIEW_MINICARD(view), E_MINICARD_VIEW (E_MINICARD_VIEW_WIDGET (address_view->object)->emv));
+ gal_view_minicard_attach (GAL_VIEW_MINICARD(view), E_MINICARD_VIEW_WIDGET (address_view->object));
}
address_view->current_view = view;
}