aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-04-04 10:43:56 +0800
committerChris Lahey <clahey@src.gnome.org>2001-04-04 10:43:56 +0800
commit8f5053c7533fe3108ac587e34e8cf943526ecb62 (patch)
tree4810935136a8d38fe719662d8772b75428b97697
parent7296e1c66438454fa48b616605a6720e6ab05923 (diff)
downloadgsoc2013-evolution-8f5053c7533fe3108ac587e34e8cf943526ecb62.tar
gsoc2013-evolution-8f5053c7533fe3108ac587e34e8cf943526ecb62.tar.gz
gsoc2013-evolution-8f5053c7533fe3108ac587e34e8cf943526ecb62.tar.bz2
gsoc2013-evolution-8f5053c7533fe3108ac587e34e8cf943526ecb62.tar.lz
gsoc2013-evolution-8f5053c7533fe3108ac587e34e8cf943526ecb62.tar.xz
gsoc2013-evolution-8f5053c7533fe3108ac587e34e8cf943526ecb62.tar.zst
gsoc2013-evolution-8f5053c7533fe3108ac587e34e8cf943526ecb62.zip
Fixed a crash here.
2001-04-03 Christopher James Lahey <clahey@ximian.com> * gui/widgets/e-addressbook-view.c (table_double_click): Fixed a crash here. svn path=/trunk/; revision=9162
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c2
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);