diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2008-11-22 00:15:54 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-22 00:15:54 +0800 |
commit | 0483582ca09b1999059fcb42904f7331f4e371ab (patch) | |
tree | c663ce0ca821c10b6d1158ed83a921f1650179aa /libempathy/empathy-file.h | |
parent | c9c339eddb7800ff88f00dbad95849cea3f56b97 (diff) | |
download | gsoc2013-empathy-0483582ca09b1999059fcb42904f7331f4e371ab.tar gsoc2013-empathy-0483582ca09b1999059fcb42904f7331f4e371ab.tar.gz gsoc2013-empathy-0483582ca09b1999059fcb42904f7331f4e371ab.tar.bz2 gsoc2013-empathy-0483582ca09b1999059fcb42904f7331f4e371ab.tar.lz gsoc2013-empathy-0483582ca09b1999059fcb42904f7331f4e371ab.tar.xz gsoc2013-empathy-0483582ca09b1999059fcb42904f7331f4e371ab.tar.zst gsoc2013-empathy-0483582ca09b1999059fcb42904f7331f4e371ab.zip |
Converted sources to Collabora coding style. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=1770
Diffstat (limited to 'libempathy/empathy-file.h')
-rw-r--r-- | libempathy/empathy-file.h | 43 |
1 files changed, 21 insertions, 22 deletions
diff --git a/libempathy/empathy-file.h b/libempathy/empathy-file.h index 06153a67a..ef1cc3d71 100644 --- a/libempathy/empathy-file.h +++ b/libempathy/empathy-file.h @@ -61,30 +61,29 @@ struct _EmpathyFileClass }; GType empathy_file_get_type (void) G_GNUC_CONST; -EmpathyFile *empathy_file_new (McAccount *account, TpChannel *channel); -const gchar *empathy_file_get_id (EmpathyFile *file); -TpChannel *empathy_file_get_channel (EmpathyFile *file); +EmpathyFile *empathy_file_new (McAccount *account, TpChannel *channel); + +TpChannel *empathy_file_get_channel (EmpathyFile *file); void empathy_file_accept (EmpathyFile *file); -guint64 empathy_file_get_transferred_bytes (EmpathyFile *file); -EmpathyContact * empathy_file_get_contact (EmpathyFile *file); -GInputStream * empathy_file_get_input_stream (EmpathyFile *file); -GOutputStream * empathy_file_get_output_stream (EmpathyFile *file); -const gchar * empathy_file_get_filename (EmpathyFile *file); -EmpFileTransferDirection empathy_file_get_direction (EmpathyFile *file); -EmpFileTransferState empathy_file_get_state (EmpathyFile *file); -EmpFileTransferStateChangeReason empathy_file_get_state_change_reason (EmpathyFile *file); -guint64 empathy_file_get_size (EmpathyFile *file); -guint64 empathy_file_get_transferred_bytes (EmpathyFile *file); -gint empathy_file_get_remaining_time (EmpathyFile *file); - -void empathy_file_set_input_stream (EmpathyFile *file, - GInputStream *uri); -void empathy_file_set_output_stream (EmpathyFile *file, - GOutputStream *uri); -void empathy_file_set_filename (EmpathyFile *file, - const gchar *filename); -void empathy_file_cancel (EmpathyFile *file); +void empathy_file_cancel (EmpathyFile *file); + +const gchar *empathy_file_get_id (EmpathyFile *file); +guint64 empathy_file_get_transferred_bytes (EmpathyFile *file); +EmpathyContact *empathy_file_get_contact (EmpathyFile *file); +GInputStream *empathy_file_get_input_stream (EmpathyFile *file); +GOutputStream *empathy_file_get_output_stream (EmpathyFile *file); +const gchar *empathy_file_get_filename (EmpathyFile *file); +EmpFileTransferDirection empathy_file_get_direction (EmpathyFile *file); +EmpFileTransferState empathy_file_get_state (EmpathyFile *file); +EmpFileTransferStateChangeReason empathy_file_get_state_change_reason (EmpathyFile *file); +guint64 empathy_file_get_size (EmpathyFile *file); +guint64 empathy_file_get_transferred_bytes (EmpathyFile *file); +gint empathy_file_get_remaining_time (EmpathyFile *file); + +void empathy_file_set_input_stream (EmpathyFile *file, GInputStream *uri); +void empathy_file_set_output_stream (EmpathyFile *file, GOutputStream *uri); +void empathy_file_set_filename (EmpathyFile *file, const gchar *filename); G_END_DECLS |