aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-07-10 01:12:16 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-07-10 01:12:16 +0800
commit8b2d3de603fa824cfc983b1574a5a8530a3a32a6 (patch)
tree99e414248b13c287abd6e5f595f1959ceffafbec /shell
parent779e0f5058e089279c2851e18ef7003ec88bb61f (diff)
downloadgsoc2013-evolution-8b2d3de603fa824cfc983b1574a5a8530a3a32a6.tar
gsoc2013-evolution-8b2d3de603fa824cfc983b1574a5a8530a3a32a6.tar.gz
gsoc2013-evolution-8b2d3de603fa824cfc983b1574a5a8530a3a32a6.tar.bz2
gsoc2013-evolution-8b2d3de603fa824cfc983b1574a5a8530a3a32a6.tar.lz
gsoc2013-evolution-8b2d3de603fa824cfc983b1574a5a8530a3a32a6.tar.xz
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')
-rw-r--r--shell/ChangeLog11
-rw-r--r--shell/e-folder-dnd-bridge.c1
-rw-r--r--shell/e-icon-factory.c1
-rw-r--r--shell/e-local-storage.c2
-rw-r--r--shell/e-shortcuts-view.c5
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))