diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-04-04 10:43:56 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-04-04 10:43:56 +0800 |
commit | 8f5053c7533fe3108ac587e34e8cf943526ecb62 (patch) | |
tree | 4810935136a8d38fe719662d8772b75428b97697 /addressbook/gui | |
parent | 7296e1c66438454fa48b616605a6720e6ab05923 (diff) | |
download | gsoc2013-evolution-8f5053c7533fe3108ac587e34e8cf943526ecb62.tar.gz 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
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |