diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2008-11-22 00:20:08 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-22 00:20:08 +0800 |
commit | 1bfcaed673317c3ea7e34903ad224e28a7a6a5ed (patch) | |
tree | 9e08776c82fc51232768e8c136cf20688e2b3c26 /libempathy/empathy-tp-file.h | |
parent | f16740fbe979cf1c99c327befc01e97db54ae26e (diff) | |
download | gsoc2013-empathy-1bfcaed673317c3ea7e34903ad224e28a7a6a5ed.tar gsoc2013-empathy-1bfcaed673317c3ea7e34903ad224e28a7a6a5ed.tar.gz gsoc2013-empathy-1bfcaed673317c3ea7e34903ad224e28a7a6a5ed.tar.bz2 gsoc2013-empathy-1bfcaed673317c3ea7e34903ad224e28a7a6a5ed.tar.lz gsoc2013-empathy-1bfcaed673317c3ea7e34903ad224e28a7a6a5ed.tar.xz gsoc2013-empathy-1bfcaed673317c3ea7e34903ad224e28a7a6a5ed.tar.zst gsoc2013-empathy-1bfcaed673317c3ea7e34903ad224e28a7a6a5ed.zip |
Don't expose streams in EmpathyTpFile, but use the GFile. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=1837
Diffstat (limited to 'libempathy/empathy-tp-file.h')
-rw-r--r-- | libempathy/empathy-tp-file.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libempathy/empathy-tp-file.h b/libempathy/empathy-tp-file.h index f412f847b..fe85296b8 100644 --- a/libempathy/empathy-tp-file.h +++ b/libempathy/empathy-tp-file.h @@ -76,8 +76,6 @@ void empathy_tp_file_offer (EmpathyTpFile *tp_file); const gchar *empathy_tp_file_get_id (EmpathyTpFile *tp_file); guint64 empathy_tp_file_get_transferred_bytes (EmpathyTpFile *tp_file); EmpathyContact *empathy_tp_file_get_contact (EmpathyTpFile *tp_file); -GInputStream *empathy_tp_file_get_input_stream (EmpathyTpFile *tp_file); -GOutputStream *empathy_tp_file_get_output_stream (EmpathyTpFile *tp_file); const gchar *empathy_tp_file_get_filename (EmpathyTpFile *tp_file); gboolean empathy_tp_file_get_incoming (EmpathyTpFile *tp_file); EmpFileTransferState empathy_tp_file_get_state (EmpathyTpFile *tp_file); @@ -85,9 +83,9 @@ EmpFileTransferStateChangeReason empathy_tp_file_get_state_change_reason (Empath guint64 empathy_tp_file_get_size (EmpathyTpFile *tp_file); guint64 empathy_tp_file_get_transferred_bytes (EmpathyTpFile *tp_file); gint empathy_tp_file_get_remaining_time (EmpathyTpFile *tp_file); +GFile *empathy_tp_file_get_gfile (EmpathyTpFile *tp_file); -void empathy_tp_file_set_input_stream (EmpathyTpFile *tp_file, GInputStream *uri); -void empathy_tp_file_set_output_stream (EmpathyTpFile *tp_file, GOutputStream *uri); +void empathy_tp_file_set_gfile (EmpathyTpFile *tp_file, GFile *gfile, GError **error); void empathy_tp_file_set_filename (EmpathyTpFile *tp_file, const gchar *filename); G_END_DECLS |