diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2004-02-09 21:12:39 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-02-09 21:12:39 +0800 |
commit | 539130046adae9ae8ad4df68d8ca0f0018ce2c68 (patch) | |
tree | af5767fad4062e1f62b06f87769ee488ad6d54a6 /mail/em-folder-tree.c | |
parent | 67aa7010610fced90d25618f94e6caf7df5749cb (diff) | |
download | gsoc2013-evolution-539130046adae9ae8ad4df68d8ca0f0018ce2c68.tar.gz gsoc2013-evolution-539130046adae9ae8ad4df68d8ca0f0018ce2c68.tar.zst gsoc2013-evolution-539130046adae9ae8ad4df68d8ca0f0018ce2c68.zip |
oops, remove some debug
svn path=/trunk/; revision=24680
Diffstat (limited to 'mail/em-folder-tree.c')
-rw-r--r-- | mail/em-folder-tree.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c index c095d5be69..85c3302a87 100644 --- a/mail/em-folder-tree.c +++ b/mail/em-folder-tree.c @@ -620,7 +620,6 @@ tree_drag_data_get(GtkWidget *widget, GdkDragContext *context, GtkSelectionData switch (info) { case DND_DRAG_TYPE_FOLDER: /* dragging to a new location in the folder tree */ - printf ("dragging uri: %s\n", uri); gtk_selection_data_set(selection, drag_atoms[info], 8, uri, strlen (uri) + 1); break; case DND_DRAG_TYPE_TEXT_URI_LIST: @@ -1008,7 +1007,6 @@ emft_drop_target(EMFolderTree *emft, GdkDragContext *context, GtkTreePath *path) /* Check for dragging from spethal folders which can't be moved/copied */ url = camel_url_new(src_uri, NULL); path = url->fragment?url->fragment:url->path; - printf("checking url src path '%s'\n", path); if (path && (strcmp(path, CAMEL_VTRASH_NAME) == 0 || strcmp(path, CAMEL_VJUNK_NAME) == 0 @@ -1024,7 +1022,6 @@ emft_drop_target(EMFolderTree *emft, GdkDragContext *context, GtkTreePath *path) /* Check for dragging folders into spethal folders */ url = camel_url_new(uri, NULL); path = url->fragment?url->fragment:url->path; - printf("checking url dest path '%s'\n", path); if (path && path[0] && (strcmp(path, CAMEL_VTRASH_NAME) == 0 || strcmp(path, CAMEL_VJUNK_NAME) == 0 |