diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-10-23 04:57:16 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-10-23 04:57:16 +0800 |
commit | fa6985828e1094ae463b781c5f72c20ba76cbff5 (patch) | |
tree | 9301abb77c9b4ffc855a095725a55b5019c4d562 /shell | |
parent | 5d45a076a99a22ecef02cbb1541542500712a1a4 (diff) | |
download | gsoc2013-evolution-fa6985828e1094ae463b781c5f72c20ba76cbff5.tar gsoc2013-evolution-fa6985828e1094ae463b781c5f72c20ba76cbff5.tar.gz gsoc2013-evolution-fa6985828e1094ae463b781c5f72c20ba76cbff5.tar.bz2 gsoc2013-evolution-fa6985828e1094ae463b781c5f72c20ba76cbff5.tar.lz gsoc2013-evolution-fa6985828e1094ae463b781c5f72c20ba76cbff5.tar.xz gsoc2013-evolution-fa6985828e1094ae463b781c5f72c20ba76cbff5.tar.zst gsoc2013-evolution-fa6985828e1094ae463b781c5f72c20ba76cbff5.zip |
Emit the right signal. (impl_tree_drag_data_get): Same.
2003-10-22 Jeffrey Stedfast <fejj@ximian.com>
* e-storage-set-view.c (impl_tree_drag_data_received): Emit the
right signal.
(impl_tree_drag_data_get): Same.
svn path=/trunk/; revision=23002
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-storage-set-view.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index e0a17d4ad5..3bcc6677f4 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2003-10-22 Jeffrey Stedfast <fejj@ximian.com> + + * e-storage-set-view.c (impl_tree_drag_data_received): Emit the + right signal. + (impl_tree_drag_data_get): Same. + 2003-10-22 Ettore Perazzoli <ettore@ximian.com> * importer/intelligent.c (create_gui): Make the scrolled window diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c index fa383c4435..1738836216 100644 --- a/shell/e-storage-set-view.c +++ b/shell/e-storage-set-view.c @@ -713,7 +713,7 @@ impl_tree_drag_data_get (ETree *etree, int drag_row, ETreePath drag_path, int dr g_assert (path != NULL); - g_signal_emit (view, FOLDER_DRAGGED, 0, path, context, selection, info, time); + g_signal_emit (view, signals[FOLDER_DRAGGED], 0, path, context, selection, info, time); } /* -- Destination-side DnD. */ @@ -805,7 +805,7 @@ impl_tree_drag_data_received (ETree *etree, int row, ETreePath path, int col, g_assert (folder_path != NULL); - g_signal_emit (view, FOLDER_RECEIVE_DROP, 0, folder_path, context, selection, info, time); + g_signal_emit (view, signals[FOLDER_RECEIVE_DROP], 0, folder_path, context, selection, info, time); } static gboolean |