diff options
author | Chris Toshok <toshok@ximian.com> | 2001-05-22 07:52:06 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-05-22 07:52:06 +0800 |
commit | 90d1371457bed4971cbe1f023b9e2426a41404be (patch) | |
tree | 925d8549f3d89af2d8827c82218a6f61048404c1 /addressbook/gui/widgets | |
parent | 8dd9bc57f75f90bfccd744f9522001862b904060 (diff) | |
download | gsoc2013-evolution-90d1371457bed4971cbe1f023b9e2426a41404be.tar gsoc2013-evolution-90d1371457bed4971cbe1f023b9e2426a41404be.tar.gz gsoc2013-evolution-90d1371457bed4971cbe1f023b9e2426a41404be.tar.bz2 gsoc2013-evolution-90d1371457bed4971cbe1f023b9e2426a41404be.tar.lz gsoc2013-evolution-90d1371457bed4971cbe1f023b9e2426a41404be.tar.xz gsoc2013-evolution-90d1371457bed4971cbe1f023b9e2426a41404be.tar.zst gsoc2013-evolution-90d1371457bed4971cbe1f023b9e2426a41404be.zip |
update_view_type is gone, since the menu item is gone.
2001-05-21 Chris Toshok <toshok@ximian.com>
* gui/component/addressbook.c (change_view_type): update_view_type
is gone, since the menu item is gone.
* gui/widgets/e-addressbook-table-adapter.c (create_card): use
e_table_model_rows_inserted here.
svn path=/trunk/; revision=9914
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-table-adapter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-table-adapter.c b/addressbook/gui/widgets/e-addressbook-table-adapter.c index 01337bf8e3..4881615811 100644 --- a/addressbook/gui/widgets/e-addressbook-table-adapter.c +++ b/addressbook/gui/widgets/e-addressbook-table-adapter.c @@ -252,8 +252,8 @@ create_card (EAddressbookModel *model, for (i = 0; i < count; i ++) { priv->simples[index + i] = e_card_simple_new (e_addressbook_model_card_at (priv->model, index + i)); gtk_object_ref (GTK_OBJECT (priv->simples[index + i])); - e_table_model_row_inserted (E_TABLE_MODEL (adapter), index + i); } + e_table_model_rows_inserted (E_TABLE_MODEL (adapter), index, count); } static void |