aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-folder-tree.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-01-27 05:02:21 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-01-27 05:02:21 +0800
commit19791220710c9d632ac5836a3a1163bc00675a9d (patch)
treec8714ab7eac23aba758307e66663ff161e8826b8 /shell/e-folder-tree.c
parent81fa33a7873d9a5c41452dbfed79015773b6c1bd (diff)
downloadgsoc2013-evolution-19791220710c9d632ac5836a3a1163bc00675a9d.tar
gsoc2013-evolution-19791220710c9d632ac5836a3a1163bc00675a9d.tar.gz
gsoc2013-evolution-19791220710c9d632ac5836a3a1163bc00675a9d.tar.bz2
gsoc2013-evolution-19791220710c9d632ac5836a3a1163bc00675a9d.tar.lz
gsoc2013-evolution-19791220710c9d632ac5836a3a1163bc00675a9d.tar.xz
gsoc2013-evolution-19791220710c9d632ac5836a3a1163bc00675a9d.tar.zst
gsoc2013-evolution-19791220710c9d632ac5836a3a1163bc00675a9d.zip
Remove all instances of non-portable macro `__FUNCTION__' from the
shell. svn path=/trunk/; revision=7841
Diffstat (limited to 'shell/e-folder-tree.c')
-rw-r--r--shell/e-folder-tree.c12
1 files changed, 6 insertions, 6 deletions
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;
}