diff options
-rw-r--r-- | shell/ChangeLog | 11 | ||||
-rw-r--r-- | shell/e-folder-dnd-bridge.c | 1 | ||||
-rw-r--r-- | shell/e-icon-factory.c | 1 | ||||
-rw-r--r-- | shell/e-local-storage.c | 2 | ||||
-rw-r--r-- | shell/e-shortcuts-view.c | 5 |
5 files changed, 11 insertions, 9 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index cf8656a41e..688ed98d4e 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,16 @@ 2002-07-09 Ettore Perazzoli <ettore@ximian.com> + * 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. + +2002-07-09 Ettore Perazzoli <ettore@ximian.com> + * main.c (main): Call e_icon_factory_init(). * e-local-storage.c (setup_folder_as_stock): New arg @icon_name; diff --git a/shell/e-folder-dnd-bridge.c b/shell/e-folder-dnd-bridge.c index f088c2b3a1..5614574e92 100644 --- a/shell/e-folder-dnd-bridge.c +++ b/shell/e-folder-dnd-bridge.c @@ -461,7 +461,6 @@ e_folder_dnd_bridge_data_received (GtkWidget *widget, target_type = gdk_atom_name (selection_data->target); if (strcmp (target_type, E_FOLDER_DND_PATH_TARGET_TYPE) != 0) { - g_print ("drop data received -- target_type %s\n", target_type); handled = handle_data_received_non_path (context, selection_data, storage_set, path, target_type); } else { diff --git a/shell/e-icon-factory.c b/shell/e-icon-factory.c index 8a66237605..33658a071f 100644 --- a/shell/e-icon-factory.c +++ b/shell/e-icon-factory.c @@ -30,7 +30,6 @@ /* One icon. Keep both a small (16x16) and a large (48x48) version around. */ - struct _Icon { char *name; GdkPixbuf *small_pixbuf; diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index 0af9c0aa51..9f9a1d1556 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -583,8 +583,6 @@ remove_folder_step (AsyncRemoveFolderCallbackData *callback_data) bonobo_object_ref (BONOBO_OBJECT (client)); - g_print ("Removing %s...\n", path); - evolution_shell_component_client_async_remove_folder (client, physical_uri, type, component_async_remove_folder_callback, callback_data); 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)) |