aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-storage.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-09-15 23:52:23 +0800
committerDan Winship <danw@src.gnome.org>2000-09-15 23:52:23 +0800
commita1894051618b168045d202641ee7c6fe3571932f (patch)
treec4c547c63028566153095b82decd920d48b445c7 /shell/e-storage.c
parent3b3f989e833c51ff0f8f0d544e14dec5e93a64dd (diff)
downloadgsoc2013-evolution-a1894051618b168045d202641ee7c6fe3571932f.tar
gsoc2013-evolution-a1894051618b168045d202641ee7c6fe3571932f.tar.gz
gsoc2013-evolution-a1894051618b168045d202641ee7c6fe3571932f.tar.bz2
gsoc2013-evolution-a1894051618b168045d202641ee7c6fe3571932f.tar.lz
gsoc2013-evolution-a1894051618b168045d202641ee7c6fe3571932f.tar.xz
gsoc2013-evolution-a1894051618b168045d202641ee7c6fe3571932f.tar.zst
gsoc2013-evolution-a1894051618b168045d202641ee7c6fe3571932f.zip
foreach_data should be set to the caller-supplied data, not the tree item
* e-storage.c (get_path_for_physical_uri_foreach): foreach_data should be set to the caller-supplied data, not the tree item data. svn path=/trunk/; revision=5452
Diffstat (limited to 'shell/e-storage.c')
-rw-r--r--shell/e-storage.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-storage.c b/shell/e-storage.c
index df69f33fd9..61b185fb6a 100644
--- a/shell/e-storage.c
+++ b/shell/e-storage.c
@@ -353,18 +353,18 @@ typedef struct _GetPathForPhysicalUriForeachData GetPathForPhysicalUriForeachDat
static void
get_path_for_physical_uri_foreach (EFolderTree *folder_tree,
const char *path,
- void *data,
- void *closure)
+ void *path_data,
+ void *user_data)
{
GetPathForPhysicalUriForeachData *foreach_data;
const char *physical_uri;
EFolder *e_folder;
- foreach_data = (GetPathForPhysicalUriForeachData *) data;
+ foreach_data = (GetPathForPhysicalUriForeachData *) user_data;
if (foreach_data->retval != NULL)
return;
- e_folder = (EFolder *) data;
+ e_folder = (EFolder *) path_data;
if (e_folder == NULL)
return;