From 2003e0ffa04b8588a4c635a995b94ff9ac1e69db Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 20 Dec 2007 13:40:04 +0000 Subject: Update for gio API changes 2007-12-20 Alexander Larsson * gdk/x11/gdkapplaunchcontext-x11.c: Update for gio API changes svn path=/trunk/; revision=19208 --- gdk/x11/gdkapplaunchcontext-x11.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdk/x11') diff --git a/gdk/x11/gdkapplaunchcontext-x11.c b/gdk/x11/gdkapplaunchcontext-x11.c index 6f810c9f92..bebe5933de 100644 --- a/gdk/x11/gdkapplaunchcontext-x11.c +++ b/gdk/x11/gdkapplaunchcontext-x11.c @@ -47,7 +47,7 @@ get_display_name (GFile *file) name = NULL; info = g_file_query_info (file, - G_FILE_ATTRIBUTE_STD_DISPLAY_NAME, 0, NULL, NULL); + G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME, 0, NULL, NULL); if (info) { name = g_strdup (g_file_info_get_display_name (info)); @@ -77,7 +77,7 @@ get_icon (GFile *file) GIcon *icon; icon = NULL; - info = g_file_query_info (file, G_FILE_ATTRIBUTE_STD_ICON, 0, NULL, NULL); + info = g_file_query_info (file, G_FILE_ATTRIBUTE_STANDARD_ICON, 0, NULL, NULL); if (info) { icon = g_file_info_get_icon (info); -- cgit v1.2.1