diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-07-10 01:12:16 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-07-10 01:12:16 +0800 |
commit | 8b2d3de603fa824cfc983b1574a5a8530a3a32a6 (patch) | |
tree | 99e414248b13c287abd6e5f595f1959ceffafbec /shell/e-shortcuts-view.c | |
parent | 779e0f5058e089279c2851e18ef7003ec88bb61f (diff) | |
download | gsoc2013-evolution-8b2d3de603fa824cfc983b1574a5a8530a3a32a6.tar.gz gsoc2013-evolution-8b2d3de603fa824cfc983b1574a5a8530a3a32a6.tar.zst gsoc2013-evolution-8b2d3de603fa824cfc983b1574a5a8530a3a32a6.zip |
Remove debugging message. (impl_shortcut_drag_motion): Likewise.
* e-shortcuts-view.c (impl_shortcut_drag_motion): Remove debugging
message.
(impl_shortcut_drag_motion): Likewise.
* e-local-storage.c (remove_folder_step): Remove debugging message.
* e-folder-dnd-bridge.c (e_folder_dnd_bridge_data_received):
Remove debugging message.
svn path=/trunk/; revision=17392
Diffstat (limited to 'shell/e-shortcuts-view.c')
-rw-r--r-- | shell/e-shortcuts-view.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c index 670bae4468..ed0e72c8d7 100644 --- a/shell/e-shortcuts-view.c +++ b/shell/e-shortcuts-view.c @@ -595,17 +595,12 @@ impl_shortcut_drag_motion (EShortcutBar *shortcut_bar, view = E_SHORTCUTS_VIEW (shortcut_bar); priv = view->priv; - g_print ("%s -- %d %d\n", __FUNCTION__, group_num, item_num); - shortcut = e_shortcuts_get_shortcut (priv->shortcuts, group_num, item_num); if (shortcut == NULL) return FALSE; if (strncmp (shortcut->uri, E_SHELL_URI_PREFIX, E_SHELL_URI_PREFIX_LEN) != 0) return FALSE; - g_print ("%s -- Handling the motion! %s\n", __FUNCTION__, - shortcut->uri + E_SHELL_URI_PREFIX_LEN); - if (! e_folder_dnd_bridge_motion (widget, context, time, e_shortcuts_get_storage_set (priv->shortcuts), shortcut->uri + E_SHELL_URI_PREFIX_LEN)) |