diff options
author | Alexander Larsson <alexl@src.gnome.org> | 2007-09-13 15:06:06 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2007-09-13 15:06:06 +0000 |
commit | 8ce57706ee09de2365ddc736a5af41989631b34c (patch) | |
tree | 609843172b2c59b83f64a316da861acc59d385d2 /client/gdaemonfileenumerator.c | |
parent | 0a8b0dbafa92892e611ca6e82b134690de0c6e5e (diff) | |
download | gvfs-8ce57706ee09de2365ddc736a5af41989631b34c.tar.gz |
Update to new GFileEnumerator apis
Original git commit by Alexander Larsson <alexl@redhat.com> at 1188912182 +0200
svn path=/trunk/; revision=890
Diffstat (limited to 'client/gdaemonfileenumerator.c')
-rw-r--r-- | client/gdaemonfileenumerator.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/client/gdaemonfileenumerator.c b/client/gdaemonfileenumerator.c index 9cec43fb..846aca75 100644 --- a/client/gdaemonfileenumerator.c +++ b/client/gdaemonfileenumerator.c @@ -34,7 +34,7 @@ G_DEFINE_TYPE (GDaemonFileEnumerator, g_daemon_file_enumerator, G_TYPE_FILE_ENUM static GFileInfo * g_daemon_file_enumerator_next_file (GFileEnumerator *enumerator, GCancellable *cancellable, GError **error); -static gboolean g_daemon_file_enumerator_stop (GFileEnumerator *enumerator, +static gboolean g_daemon_file_enumerator_close (GFileEnumerator *enumerator, GCancellable *cancellable, GError **error); static DBusHandlerResult g_daemon_file_enumerator_dbus_filter (DBusConnection *connection, @@ -73,7 +73,7 @@ g_daemon_file_enumerator_class_init (GDaemonFileEnumeratorClass *klass) gobject_class->finalize = g_daemon_file_enumerator_finalize; enumerator_class->next_file = g_daemon_file_enumerator_next_file; - enumerator_class->stop = g_daemon_file_enumerator_stop; + enumerator_class->close = g_daemon_file_enumerator_close; } static void @@ -204,9 +204,9 @@ g_daemon_file_enumerator_next_file (GFileEnumerator *enumerator, } static gboolean -g_daemon_file_enumerator_stop (GFileEnumerator *enumerator, - GCancellable *cancellable, - GError **error) +g_daemon_file_enumerator_close (GFileEnumerator *enumerator, + GCancellable *cancellable, + GError **error) { /*GDaemonFileEnumerator *daemon = G_DAEMON_FILE_ENUMERATOR (enumerator); */ |