summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2007-10-19 12:57:55 +0000
committerAlexander Larsson <alexl@src.gnome.org>2007-10-19 12:57:55 +0000
commitb981b6c5339bdc3e3d95bada2ea4206d90370233 (patch)
tree741966643a8b133f6cf3a93619bfa6e3a06f2401 /client
parent03efc95f9c39169c15d74aed92c5e11178172570 (diff)
downloadgvfs-b981b6c5339bdc3e3d95bada2ea4206d90370233.tar.gz
Add user_visible to mount info Reorder args so that new stuff comes at the
2007-10-19 Alexander Larsson <alexl@redhat.com> * common/gmounttracker.[ch]: * client/gdaemonvfs.c: * daemon/mount.c: Add user_visible to mount info Reorder args so that new stuff comes at the end * daemon/gvfsbackend.[ch]: Add user_visible setting Fix up various setters that set the wrong variable * daemon/gvfsbackendtrash.c: Add icon and better display name svn path=/trunk/; revision=984
Diffstat (limited to 'client')
-rw-r--r--client/gdaemonvfs.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/client/gdaemonvfs.c b/client/gdaemonvfs.c
index 3d5d9b35..1b13d1cc 100644
--- a/client/gdaemonvfs.c
+++ b/client/gdaemonvfs.c
@@ -470,6 +470,7 @@ handler_lookup_mount_reply (DBusMessage *reply,
const char *display_name, *icon, *obj_path, *dbus_id, *prefered_filename_encoding;
GMountSpec *mount_spec;
GList *l;
+ dbus_bool_t user_visible;
if (_g_error_from_message (reply, error))
return NULL;
@@ -481,11 +482,12 @@ handler_lookup_mount_reply (DBusMessage *reply,
if (!_g_dbus_message_iter_get_args (&struct_iter,
&derror,
+ DBUS_TYPE_STRING, &dbus_id,
+ DBUS_TYPE_OBJECT_PATH, &obj_path,
DBUS_TYPE_STRING, &display_name,
DBUS_TYPE_STRING, &icon,
DBUS_TYPE_STRING, &prefered_filename_encoding,
- DBUS_TYPE_STRING, &dbus_id,
- DBUS_TYPE_OBJECT_PATH, &obj_path,
+ DBUS_TYPE_BOOLEAN, &user_visible,
0))
{
_g_error_from_dbus (&derror, error);