diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-25 15:01:06 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-25 15:01:06 +0800 |
commit | 6e07a7685ae9d7951a1a519607e40ce7f8580802 (patch) | |
tree | 55cc64b335bc6429ef6b72f5d485240f47193f0a /shell/e-storage-set-view.c | |
parent | b4457f6518999f322f7825bb1ffcb510a42fcf6d (diff) | |
download | gsoc2013-evolution-6e07a7685ae9d7951a1a519607e40ce7f8580802.tar.gz gsoc2013-evolution-6e07a7685ae9d7951a1a519607e40ce7f8580802.tar.zst gsoc2013-evolution-6e07a7685ae9d7951a1a519607e40ce7f8580802.zip |
Remove some spurious "\n"s from g_warnings.
svn path=/trunk/; revision=10472
Diffstat (limited to 'shell/e-storage-set-view.c')
-rw-r--r-- | shell/e-storage-set-view.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c index 63aa9cfbf1..a9106ecfa0 100644 --- a/shell/e-storage-set-view.c +++ b/shell/e-storage-set-view.c @@ -374,7 +374,7 @@ convert_gdk_drag_action_to_corba (GdkDragAction action) else if (action == GDK_ACTION_ASK) return GNOME_Evolution_ShellComponentDnd_ACTION_ASK; else { - g_warning ("unknown GdkDragAction %d\n", action); + g_warning ("Unknown GdkDragAction %d", action); return GNOME_Evolution_ShellComponentDnd_ACTION_DEFAULT; } } @@ -391,7 +391,7 @@ convert_corba_drag_action_to_gdk (GNOME_Evolution_ShellComponentDnd_ActionSet ac else if (action == GNOME_Evolution_ShellComponentDnd_ACTION_ASK) return GDK_ACTION_ASK; else { - g_warning ("unknown GNOME_Evolution_ShellComponentDnd_ActionSet %d\n", action); + g_warning ("unknown GNOME_Evolution_ShellComponentDnd_ActionSet %d", action); return GDK_ACTION_DEFAULT; } } @@ -1228,7 +1228,7 @@ tree_drag_data_received (ETree *etree, folder_xfer_callback, NULL); break; default: - g_warning ("EStorageSetView: Don't know action %d\n", context->action); + g_warning ("EStorageSetView: Unknown action %d", context->action); } g_free (destination_path); @@ -1576,7 +1576,7 @@ new_folder_cb (EStorageSet *storage_set, parent_path = g_strndup (path, last_separator - path); parent_node = g_hash_table_lookup (priv->path_to_etree_node, parent_path); if (parent_node == NULL) { - g_warning ("EStorageSetView: EStorageSet reported new subfolder for non-existing folder -- %s\n", + g_warning ("EStorageSetView: EStorageSet reported new subfolder for non-existing folder -- %s", parent_path); g_free (parent_path); return; |