diff options
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index fb6d83ea05..c08f897c49 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,10 @@ 2001-04-03 Christopher James Lahey <clahey@ximian.com> + * gui/widgets/e-addressbook-view.c (table_double_click): Fixed a + crash here. + +2001-04-03 Christopher James Lahey <clahey@ximian.com> + * gui/widgets/e-addressbook-model.c (COLS): Made this table model more consistent in the number of columns it has. (addressbook_append_row): Fixed this function. We removed the col @@ -42,6 +47,8 @@ * printing/e-contact-print-envelope.c: Added #include <time.h> and #include <libgnome/gnome-paper.h> +2001-04-03 Christopher James Lahey <clahey@ximian.com> + * gui/component/select-names/e-select-names-completion.c (match_email): Better handle matching of "nameless" contacts. diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index 6229eb0ccf..52ee3e3db6 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -432,7 +432,7 @@ supported_fields_cb (EBook *book, EBookStatus status, EList *fields, CardAndView } static void -table_double_click(ETableScrolled *table, gint row, EAddressbookView *view) +table_double_click(ETableScrolled *table, gint row, gint col, GdkEvent *event, EAddressbookView *view) { if (E_IS_ADDRESSBOOK_MODEL(view->object)) { EAddressbookModel *model = E_ADDRESSBOOK_MODEL(view->object); |