aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/e-addressbook-model.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-03-04 17:55:49 +0800
committerChris Lahey <clahey@src.gnome.org>2001-03-04 17:55:49 +0800
commiteca83b21db88e5d9e9ac712bd566942c8b2ff00a (patch)
tree3cf52f973bf173a59ce368a83dbcba7bdf141e05 /addressbook/gui/widgets/e-addressbook-model.c
parent0ce6720cb1d96607fbc233e0e6f2b9a8c7a86a1c (diff)
downloadgsoc2013-evolution-eca83b21db88e5d9e9ac712bd566942c8b2ff00a.tar
gsoc2013-evolution-eca83b21db88e5d9e9ac712bd566942c8b2ff00a.tar.gz
gsoc2013-evolution-eca83b21db88e5d9e9ac712bd566942c8b2ff00a.tar.bz2
gsoc2013-evolution-eca83b21db88e5d9e9ac712bd566942c8b2ff00a.tar.lz
gsoc2013-evolution-eca83b21db88e5d9e9ac712bd566942c8b2ff00a.tar.xz
gsoc2013-evolution-eca83b21db88e5d9e9ac712bd566942c8b2ff00a.tar.zst
gsoc2013-evolution-eca83b21db88e5d9e9ac712bd566942c8b2ff00a.zip
Cleaned up the formatting in this file a bit.
2001-03-04 Christopher James Lahey <clahey@ximian.com> * backend/ebook/e-card-simple.c: Cleaned up the formatting in this file a bit. * contact-editor/e-contact-editor.c (e_contact_editor_set_arg): Made it so that passing in NULL to the writable_fields arg sets the set of writable fields to the empty set. * gui/component/select-names/e-select-names-text-model.c (e_select_names_text_model_activate_obj): Pass NULL as the writable_fields argument here. * gui/widgets/e-addressbook-model.c: Don't offset by one here. This way we will get the file_as field as one of our ETableColumns. * gui/widgets/e-addressbook-view.c (SPEC): Updated this for the changes in ECardSimple. * gui/widgets/e-minicard.c (remodel): Don't remodel if the item isn't realized. svn path=/trunk/; revision=8538
Diffstat (limited to 'addressbook/gui/widgets/e-addressbook-model.c')
-rw-r--r--addressbook/gui/widgets/e-addressbook-model.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-model.c b/addressbook/gui/widgets/e-addressbook-model.c
index c40c21f3bb..31443a65b3 100644
--- a/addressbook/gui/widgets/e-addressbook-model.c
+++ b/addressbook/gui/widgets/e-addressbook-model.c
@@ -90,7 +90,7 @@ addressbook_destroy(GtkObject *object)
static int
addressbook_col_count (ETableModel *etc)
{
- return E_CARD_SIMPLE_FIELD_LAST;
+ return E_CARD_SIMPLE_FIELD_LAST - 4;
}
/* This function returns the number of rows in our ETableModel. */
@@ -107,11 +107,11 @@ addressbook_value_at (ETableModel *etc, int col, int row)
{
EAddressbookModel *addressbook = E_ADDRESSBOOK_MODEL(etc);
const char *value;
- if ( col >= E_CARD_SIMPLE_FIELD_LAST - 1 || row >= addressbook->data_count )
+ if ( col >= E_CARD_SIMPLE_FIELD_LAST || row >= addressbook->data_count )
return NULL;
value = e_card_simple_get_const(addressbook->data[row],
- col + 1);
+ col);
return (void *)(value ? value : "");
}
@@ -122,10 +122,10 @@ addressbook_set_value_at (ETableModel *etc, int col, int row, const void *val)
EAddressbookModel *addressbook = E_ADDRESSBOOK_MODEL(etc);
ECard *card;
if (addressbook->editable) {
- if ( col >= E_CARD_SIMPLE_FIELD_LAST - 1|| row >= addressbook->data_count )
+ if ( col >= E_CARD_SIMPLE_FIELD_LAST|| row >= addressbook->data_count )
return;
e_card_simple_set(addressbook->data[row],
- col + 1,
+ col,
val);
gtk_object_get(GTK_OBJECT(addressbook->data[row]),
"card", &card,