diff options
author | Chris Toshok <toshok@ximian.com> | 2003-04-24 04:34:36 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-04-24 04:34:36 +0800 |
commit | 882658cc42e55cb44cb913a25ee9dfe3ca461815 (patch) | |
tree | 3d3f3cfa18e4bad18485f2843c31c65db5efea38 /addressbook | |
parent | 3fa9162b67f4ef126264c38af659af610b01efd4 (diff) | |
download | gsoc2013-evolution-882658cc42e55cb44cb913a25ee9dfe3ca461815.tar.gz gsoc2013-evolution-882658cc42e55cb44cb913a25ee9dfe3ca461815.tar.zst gsoc2013-evolution-882658cc42e55cb44cb913a25ee9dfe3ca461815.zip |
[ fixes bug #37351 ] the row the signal is called with is already the
2003-04-23 Chris Toshok <toshok@ximian.com>
[ 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
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 293572bbd5..550daa7917 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,12 @@ 2003-04-23 Chris Toshok <toshok@ximian.com> + [ 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 <toshok@ximian.com> + [ either mostly or entirely fixes #33708 ] * gui/component/select-names/e-select-names-completion.c (e_select_names_completion_done): new function, factor it out of 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, |