From 882658cc42e55cb44cb913a25ee9dfe3ca461815 Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Wed, 23 Apr 2003 20:34:36 +0000 Subject: [ fixes bug #37351 ] the row the signal is called with is already the 2003-04-23 Chris Toshok [ fixes bug #37351 ] * gui/widgets/e-addressbook-view.c (table_drag_data_get): the row the signal is called with is already the model row, not the view row, so don't call e_table_view_to_model_row on it. svn path=/trunk/; revision=20944 --- addressbook/ChangeLog | 7 +++++++ addressbook/gui/widgets/e-addressbook-view.c | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 293572bbd5..550daa7917 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2003-04-23 Chris Toshok + + [ fixes bug #37351 ] + * gui/widgets/e-addressbook-view.c (table_drag_data_get): the row + the signal is called with is already the model row, not the view + row, so don't call e_table_view_to_model_row on it. + 2003-04-23 Chris Toshok [ either mostly or entirely fixes #33708 ] diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index c15337adf6..4585e6c4a3 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -1260,7 +1260,6 @@ table_drag_data_get (ETable *table, case DND_TARGET_TYPE_VCARD: { char *value; - row = e_table_view_to_model_row (table, row); value = e_card_get_vcard(view->model->data[row]); gtk_selection_data_set (selection_data, -- cgit