summaryrefslogtreecommitdiff
path: root/client/gdaemonfile.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2008-02-21 09:10:57 +0000
committerAlexander Larsson <alexl@src.gnome.org>2008-02-21 09:10:57 +0000
commitf93d3e4412697544cf597138c0b0d3685b022559 (patch)
treed619ab994098a0107b263708b56dcbd8aed7042f /client/gdaemonfile.c
parent41e5302b2265bff702d6c6754fca5272e488ec3c (diff)
downloadgvfs-f93d3e4412697544cf597138c0b0d3685b022559.tar.gz
Update for the contains_file rename in gio.
2008-02-21 Alexander Larsson <alexl@redhat.com> * client/gdaemonfile.c: (g_daemon_file_prefix_matches): (g_daemon_file_file_iface_init): Update for the contains_file rename in gio. svn path=/trunk/; revision=1317
Diffstat (limited to 'client/gdaemonfile.c')
-rw-r--r--client/gdaemonfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/gdaemonfile.c b/client/gdaemonfile.c
index a213a6cb..65c01f66 100644
--- a/client/gdaemonfile.c
+++ b/client/gdaemonfile.c
@@ -300,8 +300,8 @@ match_prefix (const char *path, const char *prefix)
}
static gboolean
-g_daemon_file_contains_file (GFile *parent,
- GFile *descendant)
+g_daemon_file_prefix_matches (GFile *parent,
+ GFile *descendant)
{
GDaemonFile *parent_daemon = G_DAEMON_FILE (parent);
GDaemonFile *descendant_daemon = G_DAEMON_FILE (descendant);
@@ -2080,7 +2080,7 @@ g_daemon_file_file_iface_init (GFileIface *iface)
iface->get_uri = g_daemon_file_get_uri;
iface->get_parse_name = g_daemon_file_get_parse_name;
iface->get_parent = g_daemon_file_get_parent;
- iface->contains_file = g_daemon_file_contains_file;
+ iface->prefix_matches = g_daemon_file_prefix_matches;
iface->get_relative_path = g_daemon_file_get_relative_path;
iface->resolve_relative_path = g_daemon_file_resolve_relative_path;
iface->get_child_for_display_name = g_daemon_file_get_child_for_display_name;