aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-component-registry.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-09-14 05:26:42 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-09-14 05:26:42 +0800
commit81b29a04e528b0001d4f95f46eee80c5276101c7 (patch)
tree2f3b3de75472d41a9e23081bfa4505d77e073fa0 /shell/e-component-registry.c
parentc788ba0fafe0143c06efb32a633aef139d21e142 (diff)
downloadgsoc2013-evolution-81b29a04e528b0001d4f95f46eee80c5276101c7.tar
gsoc2013-evolution-81b29a04e528b0001d4f95f46eee80c5276101c7.tar.gz
gsoc2013-evolution-81b29a04e528b0001d4f95f46eee80c5276101c7.tar.bz2
gsoc2013-evolution-81b29a04e528b0001d4f95f46eee80c5276101c7.tar.lz
gsoc2013-evolution-81b29a04e528b0001d4f95f46eee80c5276101c7.tar.xz
gsoc2013-evolution-81b29a04e528b0001d4f95f46eee80c5276101c7.tar.zst
gsoc2013-evolution-81b29a04e528b0001d4f95f46eee80c5276101c7.zip
[Remove a bunch of debugging messages, as per #7741.]
* evolution-wizard.c (impl_GNOME_Evolution_Wizard_notifyAction): Removed debugging messages. * e-storage-set.c (storage_removed_folder_cb): Removed debugging message. * e-storage-set-view.c (tree_drag_begin): Removed debugging message. (tree_drag_data_received): Removed debugging messages. * e-shortcuts.c (idle_cb): Removed debugging message. * e-shortcuts-view-model.c (get_icon_for_item): Removed debugging message. * e-shell.c (setup_components): Removed debugging message. * e-shell-startup-wizard.c (druid_event_notify_cb): Removed debugging message. (e_shell_startup_wizard_create): Removed debugging message. * e-shell-offline-handler.c (finalize_offline_hash_foreach): Removed debugging message. * e-shell-importer.c (start_import): Removed debugging message. (item_selected): Same here. * e-local-storage.c (async_xfer_folder_step): Removed debugging message. * e-corba-storage.c (impl_StorageListener_notifyFolderCreated): Changed the error from a g_print() into a g_warning(). Removed debugging message. * e-corba-storage-registry.c (impl_StorageRegistry_addStorage): Removed debugging message. (impl_StorageRegistry_removeStorageByName): Likewise. * e-component-registry.c (component_free): Removed debugging message. (register_component): Don't printf() about the registered folder type. (register_component): Don't printf() about the registered schema type. svn path=/trunk/; revision=12811
Diffstat (limited to 'shell/e-component-registry.c')
-rw-r--r--shell/e-component-registry.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/shell/e-component-registry.c b/shell/e-component-registry.c
index 9ca257d788..3851821741 100644
--- a/shell/e-component-registry.c
+++ b/shell/e-component-registry.c
@@ -88,8 +88,6 @@ component_free (Component *component)
GNOME_Evolution_ShellComponent_unsetOwner (corba_shell_component, &ev);
if (ev._major != CORBA_NO_EXCEPTION)
g_warning ("Cannot unregister component -- %s", component->id);
- else
- g_print ("Component unregistered successfully -- %s\n", component->id);
CORBA_exception_free (&ev);
g_free (component->id);
@@ -203,9 +201,6 @@ register_component (EComponentRegistry *component_registry,
component)) {
g_warning ("Cannot register type `%s' for component %s",
type->name, component->id);
- } else {
- g_print ("Registered type for component -- (%s) %s\n",
- type->name, component->id);
}
}
@@ -225,8 +220,6 @@ register_component (EComponentRegistry *component_registry,
schema = supported_schemas->_buffer[i];
if (! e_uri_schema_registry_set_handler_for_schema (uri_schema_registry, schema, component->client))
g_warning ("Cannot register schema `%s' for component %s", schema, component->id);
- else
- g_print ("Registered handler for schema `%s' -- %s\n", schema, component->id);
}
CORBA_free (supported_schemas);