From 8c0c4e1fd58d8bd27dce89b16b05fc3a853b22e2 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 20 Dec 2007 13:33:30 +0000 Subject: Update to new gio file attribute names 2007-12-20 Alexander Larsson * libnautilus-private/nautilus-customization-data.c: * libnautilus-private/nautilus-directory-async.c: * libnautilus-private/nautilus-dnd.c: * libnautilus-private/nautilus-file-operations.c: * libnautilus-private/nautilus-file-utilities.c: * libnautilus-private/nautilus-file.c: * libnautilus-private/nautilus-icon-dnd.c: * libnautilus-private/nautilus-link.c: * libnautilus-private/nautilus-search-engine-simple.c: * libnautilus-private/nautilus-trash-monitor.c: * src/file-manager/fm-directory-view.c: * src/file-manager/fm-properties-window.c: * src/nautilus-pathbar.c: * src/nautilus-property-browser.c: Update to new gio file attribute names svn path=/trunk/; revision=13538 --- libnautilus-private/nautilus-dnd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libnautilus-private/nautilus-dnd.c') diff --git a/libnautilus-private/nautilus-dnd.c b/libnautilus-private/nautilus-dnd.c index 977dd6e5e..1c3d24c6c 100644 --- a/libnautilus-private/nautilus-dnd.c +++ b/libnautilus-private/nautilus-dnd.c @@ -304,28 +304,28 @@ check_same_fs (GFile *file1, GFile *file2) gboolean res; info1 = g_file_query_info (file1, - G_FILE_ATTRIBUTE_ID_FS, + G_FILE_ATTRIBUTE_ID_FILESYSTEM, 0, NULL, NULL); if (info1 == NULL) { return FALSE; } - id1 = g_file_info_get_attribute_string (info1, G_FILE_ATTRIBUTE_ID_FS); + id1 = g_file_info_get_attribute_string (info1, G_FILE_ATTRIBUTE_ID_FILESYSTEM); if (id1 == NULL) { g_object_unref (info1); return FALSE; } info2 = g_file_query_info (file2, - G_FILE_ATTRIBUTE_ID_FS, + G_FILE_ATTRIBUTE_ID_FILESYSTEM, 0, NULL, NULL); if (info2 == NULL) { g_object_unref (info1); return FALSE; } - id2 = g_file_info_get_attribute_string (info2, G_FILE_ATTRIBUTE_ID_FS); + id2 = g_file_info_get_attribute_string (info2, G_FILE_ATTRIBUTE_ID_FILESYSTEM); if (id2 == NULL) { g_object_unref (info1); g_object_unref (info2); -- cgit v1.2.1