summaryrefslogtreecommitdiff
path: root/gio/gunixmounts.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2008-01-09 15:20:49 +0000
committerAlexander Larsson <alexl@src.gnome.org>2008-01-09 15:20:49 +0000
commit47b8809e176f4bc7f22768cb45fec47280c4242f (patch)
tree3f34b7d83dfbbe0f3bf70932bb6e7bc5d97dbaef /gio/gunixmounts.c
parente00f20fae75846517e36df2cab4e0fe48e836787 (diff)
Add g_themed_icon_new_with_default_fallbacks
2008-01-09 Alexander Larsson <alexl@redhat.com> * gio.symbols: * gthemedicon.[ch]: Add g_themed_icon_new_with_default_fallbacks * gunixmounts.c: Use default fallbacks for icons svn path=/trunk/; revision=6284
Diffstat (limited to 'gio/gunixmounts.c')
-rw-r--r--gio/gunixmounts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/gunixmounts.c b/gio/gunixmounts.c
index 4b26c2b9a..361c0318b 100644
--- a/gio/gunixmounts.c
+++ b/gio/gunixmounts.c
@@ -1769,7 +1769,7 @@ g_unix_mount_guess_name (GUnixMountEntry *mount_entry)
GIcon *
g_unix_mount_guess_icon (GUnixMountEntry *mount_entry)
{
- return g_themed_icon_new (type_to_icon (g_unix_mount_guess_type (mount_entry), FALSE));
+ return g_themed_icon_new_with_default_fallbacks (type_to_icon (g_unix_mount_guess_type (mount_entry), FALSE));
}
/**
@@ -1806,7 +1806,7 @@ g_unix_mount_point_guess_name (GUnixMountPoint *mount_point)
GIcon *
g_unix_mount_point_guess_icon (GUnixMountPoint *mount_point)
{
- return g_themed_icon_new (type_to_icon (g_unix_mount_point_guess_type (mount_point), TRUE));
+ return g_themed_icon_new_with_default_fallbacks (type_to_icon (g_unix_mount_point_guess_type (mount_point), TRUE));
}
/**