diff options
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-offline-handler.c | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 3b196f755b..9374d4846c 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,11 @@ 2001-10-26 Ettore Perazzoli <ettore@ximian.com> + * e-shell-offline-handler.c (prepare_for_offline): Remove + debugging messages. + (finalize_offline_hash_foreach): Likewise. + +2001-10-26 Ettore Perazzoli <ettore@ximian.com> + * e-shell-offline-handler.c: New member `finished' in `EShellOfflineHandlerPrivate'. (finalize_offline): Ref the handler as we might get destroyed diff --git a/shell/e-shell-offline-handler.c b/shell/e-shell-offline-handler.c index 6e02bc2104..915a5df837 100644 --- a/shell/e-shell-offline-handler.c +++ b/shell/e-shell-offline-handler.c @@ -438,8 +438,6 @@ prepare_for_offline (EShellOfflineHandler *offline_handler) g_assert (g_hash_table_lookup (priv->id_to_component_info, component_info->id) == NULL); g_hash_table_insert (priv->id_to_component_info, component_info->id, component_info); - - g_print ("Inserting -- %p %s\n", component_info, component_info->id); } /* If an error occurred while preparing, just put all the components @@ -472,8 +470,6 @@ finalize_offline_hash_foreach (void *key, CORBA_exception_init (&ev); - g_print ("Offline -- %p\n", component_info); - GNOME_Evolution_Offline_goOffline (component_info->offline_interface, component_info->progress_listener_interface, &ev); |