diff options
author | Chris Toshok <toshok@ximian.com> | 2001-04-08 17:20:19 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-04-08 17:20:19 +0800 |
commit | 2eac67c34c2d97da8894c1e7dc9a366d144d550f (patch) | |
tree | fa6c01908e087286c8c6dfe507e8797d79d065fc /shell/e-storage-set-view.c | |
parent | 7e47d41fdf51b5e43493613bcb7292b864ad787e (diff) | |
download | gsoc2013-evolution-2eac67c34c2d97da8894c1e7dc9a366d144d550f.tar.gz gsoc2013-evolution-2eac67c34c2d97da8894c1e7dc9a366d144d550f.tar.zst gsoc2013-evolution-2eac67c34c2d97da8894c1e7dc9a366d144d550f.zip |
fix type. we want the destination interface, not source.
2001-04-08 Chris Toshok <toshok@ximian.com>
* e-storage-set-view.c (tree_drag_motion): fix type. we want the
destination interface, not source.
svn path=/trunk/; revision=9204
Diffstat (limited to 'shell/e-storage-set-view.c')
-rw-r--r-- | shell/e-storage-set-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c index 705b668cbc..595e2bf76a 100644 --- a/shell/e-storage-set-view.c +++ b/shell/e-storage-set-view.c @@ -1100,7 +1100,7 @@ tree_drag_motion (ETree *tree, if (strcmp (dnd_type, EVOLUTION_PATH_TARGET_TYPE) == 0) return handle_evolution_path_drag_motion (storage_set_view, path, context, time); - destination_folder_interface = evolution_shell_component_client_get_dnd_source_interface (component_client); + destination_folder_interface = evolution_shell_component_client_get_dnd_destination_interface (component_client); if (destination_folder_interface == NULL) return FALSE; |