diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2008-11-22 00:16:18 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-22 00:16:18 +0800 |
commit | db8a45489640b5e911b0336a9867e7b698433889 (patch) | |
tree | b33f76bfd1c2f39af2bdd9391d2757f778a64a7f /libempathy-gtk/empathy-ui-utils.c | |
parent | 0eb2d66616230fff2a14feb16d1ad36650443acf (diff) | |
download | gsoc2013-empathy-db8a45489640b5e911b0336a9867e7b698433889.tar gsoc2013-empathy-db8a45489640b5e911b0336a9867e7b698433889.tar.gz gsoc2013-empathy-db8a45489640b5e911b0336a9867e7b698433889.tar.bz2 gsoc2013-empathy-db8a45489640b5e911b0336a9867e7b698433889.tar.lz gsoc2013-empathy-db8a45489640b5e911b0336a9867e7b698433889.tar.xz gsoc2013-empathy-db8a45489640b5e911b0336a9867e7b698433889.tar.zst gsoc2013-empathy-db8a45489640b5e911b0336a9867e7b698433889.zip |
Renamed EmpathyFile to EmpathyTpFile. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=1776
Diffstat (limited to 'libempathy-gtk/empathy-ui-utils.c')
-rw-r--r-- | libempathy-gtk/empathy-ui-utils.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c index 19bc078f2..ab4696271 100644 --- a/libempathy-gtk/empathy-ui-utils.c +++ b/libempathy-gtk/empathy-ui-utils.c @@ -1473,23 +1473,23 @@ file_manager_send_file_response_cb (GtkDialog *widget, for (l = list; l; l = l->next) { gchar *uri; GFile *gfile; - EmpathyFile *file; + EmpathyTpFile *tp_file; GtkRecentManager *manager; uri = l->data; gfile = g_file_new_for_uri (uri); DEBUG ("\t%s", uri); - file = empathy_send_file (response_data->contact, - gfile); + tp_file = empathy_send_file (response_data->contact, + gfile); if (response_data->callback) - response_data->callback (file, + response_data->callback (tp_file, response_data->user_data); manager = gtk_recent_manager_get_default (); gtk_recent_manager_add_item (manager, uri); - if (file) ; + if (tp_file) ; /* TODO: This should be unrefed, but * it's not referenced anywhere else, * so the transfer just ends. Uncomment @@ -1571,10 +1571,10 @@ empathy_send_file_with_file_chooser (EmpathyContact *contact, } static void -add_file_to_manager (EmpathyFile *file, +add_file_to_manager (EmpathyTpFile *tp_file, EmpathyFTManager *ft_manager) { - empathy_ft_manager_add_file (ft_manager, file); + empathy_ft_manager_add_tp_file (ft_manager, tp_file); } void |