diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-22 00:21:36 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-22 00:21:36 +0800 |
commit | 725180aedc1f5a7f2aa93c02abe5748915b82022 (patch) | |
tree | d1e135456429cd68fc795491cbd0621bfb9656da /libempathy-gtk | |
parent | b6153431b2e07421b9ecc8d9b2ddddc7db15a926 (diff) | |
download | gsoc2013-empathy-725180aedc1f5a7f2aa93c02abe5748915b82022.tar gsoc2013-empathy-725180aedc1f5a7f2aa93c02abe5748915b82022.tar.gz gsoc2013-empathy-725180aedc1f5a7f2aa93c02abe5748915b82022.tar.bz2 gsoc2013-empathy-725180aedc1f5a7f2aa93c02abe5748915b82022.tar.lz gsoc2013-empathy-725180aedc1f5a7f2aa93c02abe5748915b82022.tar.xz gsoc2013-empathy-725180aedc1f5a7f2aa93c02abe5748915b82022.tar.zst gsoc2013-empathy-725180aedc1f5a7f2aa93c02abe5748915b82022.zip |
empathy-ft-manager: use the ContentType property instead of gnome_vfs_get_mime_type_for_name to get the mime type
svn path=/trunk/; revision=1859
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-ft-manager.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-ft-manager.c b/libempathy-gtk/empathy-ft-manager.c index 329d6e004..76b5433b3 100644 --- a/libempathy-gtk/empathy-ft-manager.c +++ b/libempathy-gtk/empathy-ft-manager.c @@ -603,10 +603,10 @@ ft_manager_add_tp_file_to_list (EmpathyFTManager *ft_manager, GtkIconTheme *theme; GtkIconInfo *icon_info; GdkPixbuf *pixbuf; - const gchar *mime; gchar *icon_name; gint width = 16; gint height = 16; + gchar *content_type; gtk_list_store_insert_with_values (GTK_LIST_STORE (ft_manager->priv->model), &iter, G_MAXINT, COL_FT_OBJECT, tp_file, -1); @@ -632,12 +632,13 @@ ft_manager_add_tp_file_to_list (EmpathyFTManager *ft_manager, g_signal_connect (tp_file, "notify::transferred-bytes", G_CALLBACK (ft_manager_transferred_bytes_changed_cb), ft_manager); - mime = gnome_vfs_get_mime_type_for_name (empathy_tp_file_get_filename (tp_file)); + g_object_get (tp_file, "content-type", &content_type, NULL); + theme = gtk_icon_theme_get_default (); /* FIXME remove the dependency on libgnomeui replacing this function * with gio/gvfs or copying the code from gtk-recent */ icon_name = gnome_icon_lookup (theme, NULL, NULL, NULL, NULL, - mime, GNOME_ICON_LOOKUP_FLAGS_NONE, NULL); + content_type, GNOME_ICON_LOOKUP_FLAGS_NONE, NULL); gtk_icon_size_lookup_for_settings (gtk_widget_get_settings ( ft_manager->priv->window), @@ -661,6 +662,7 @@ ft_manager_add_tp_file_to_list (EmpathyFTManager *ft_manager, } gtk_window_present (GTK_WINDOW (ft_manager->priv->window)); + g_free (content_type); } static void |