From 19791220710c9d632ac5836a3a1163bc00675a9d Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Fri, 26 Jan 2001 21:02:21 +0000 Subject: Remove all instances of non-portable macro `__FUNCTION__' from the shell. svn path=/trunk/; revision=7841 --- shell/e-folder-tree.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'shell/e-folder-tree.c') diff --git a/shell/e-folder-tree.c b/shell/e-folder-tree.c index a3f5d661ee..5feb66c320 100644 --- a/shell/e-folder-tree.c +++ b/shell/e-folder-tree.c @@ -243,22 +243,22 @@ e_folder_tree_add (EFolderTree *folder_tree, parent_folder = g_hash_table_lookup (folder_tree->path_to_folder, parent_path); if (parent_folder == NULL) { - g_warning ("%s: Trying to add a subfolder to a path that does not exist yet -- %s", - __FUNCTION__, parent_path); + g_warning ("e_folder_tree_add() -- Trying to add a subfolder to a path that does not exist yet -- %s", + parent_path); return FALSE; } folder = g_hash_table_lookup (folder_tree->path_to_folder, path); if (folder != NULL) { - g_warning ("%s: Trying to add a subfolder for a path that already exists -- %s", - __FUNCTION__, path); + g_warning ("e_folder_tree_add() -- Trying to add a subfolder for a path that already exists -- %s", + path); return FALSE; } existing_path = g_hash_table_lookup (folder_tree->data_to_path, data); if (existing_path != NULL) { - g_warning ("%s: Trying to add a folder with duplicate data -- %s", - __FUNCTION__, path); + g_warning ("e_folder_tree_add() -- Trying to add a folder with duplicate data -- %s", + path); return FALSE; } -- cgit