aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-11-22 00:23:06 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-11-22 00:23:06 +0800
commit52bc77159e915ea52e32b4d7873aa644f885a859 (patch)
treee9ce3f352e48ea9368f8db6f691a3af88d9509c5 /libempathy
parent2f6a0562f6b163cbbd8df706ade46802ab02c1d5 (diff)
downloadgsoc2013-empathy-52bc77159e915ea52e32b4d7873aa644f885a859.tar
gsoc2013-empathy-52bc77159e915ea52e32b4d7873aa644f885a859.tar.gz
gsoc2013-empathy-52bc77159e915ea52e32b4d7873aa644f885a859.tar.bz2
gsoc2013-empathy-52bc77159e915ea52e32b4d7873aa644f885a859.tar.lz
gsoc2013-empathy-52bc77159e915ea52e32b4d7873aa644f885a859.tar.xz
gsoc2013-empathy-52bc77159e915ea52e32b4d7873aa644f885a859.tar.zst
gsoc2013-empathy-52bc77159e915ea52e32b4d7873aa644f885a859.zip
rename empathy_tp_file_get_incoming to empathy_tp_file_is_incoming
svn path=/trunk/; revision=1882
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-tp-file.c2
-rw-r--r--libempathy/empathy-tp-file.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-tp-file.c b/libempathy/empathy-tp-file.c
index c26f939f6..84246c457 100644
--- a/libempathy/empathy-tp-file.c
+++ b/libempathy/empathy-tp-file.c
@@ -868,7 +868,7 @@ empathy_tp_file_get_filename (EmpathyTpFile *tp_file)
}
gboolean
-empathy_tp_file_get_incoming (EmpathyTpFile *tp_file)
+empathy_tp_file_is_incoming (EmpathyTpFile *tp_file)
{
g_return_val_if_fail (EMPATHY_IS_TP_FILE (tp_file), FALSE);
return tp_file->priv->incoming;
diff --git a/libempathy/empathy-tp-file.h b/libempathy/empathy-tp-file.h
index 408b67cb0..3243451e0 100644
--- a/libempathy/empathy-tp-file.h
+++ b/libempathy/empathy-tp-file.h
@@ -77,7 +77,7 @@ 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);
const gchar *empathy_tp_file_get_filename (EmpathyTpFile *tp_file);
-gboolean empathy_tp_file_get_incoming (EmpathyTpFile *tp_file);
+gboolean empathy_tp_file_is_incoming (EmpathyTpFile *tp_file);
EmpFileTransferState empathy_tp_file_get_state (EmpathyTpFile *tp_file);
EmpFileTransferStateChangeReason empathy_tp_file_get_state_change_reason (EmpathyTpFile *tp_file);
guint64 empathy_tp_file_get_size (EmpathyTpFile *tp_file);