diff options
author | Alexander Larsson <alexl@redhat.com> | 2007-12-20 13:40:04 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2007-12-20 13:40:04 +0000 |
commit | 2003e0ffa04b8588a4c635a995b94ff9ac1e69db (patch) | |
tree | 103ee02c64731d273bc51b3aef0172bf84e4d5c6 /gdk/x11 | |
parent | 14ae647a3795e679c592be2c1b5ede3848c078a5 (diff) | |
download | gtk+-2003e0ffa04b8588a4c635a995b94ff9ac1e69db.tar.gz |
Update for gio API changes
2007-12-20 Alexander Larsson <alexl@redhat.com>
* gdk/x11/gdkapplaunchcontext-x11.c:
Update for gio API changes
svn path=/trunk/; revision=19208
Diffstat (limited to 'gdk/x11')
-rw-r--r-- | gdk/x11/gdkapplaunchcontext-x11.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |