aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-ft-manager.c
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2008-11-22 00:16:40 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-11-22 00:16:40 +0800
commit653e7b22a6962f8d7407de5165404b935f0be511 (patch)
treef0d0428e8ca87e1a3ffc9139640fc6902cebd727 /libempathy-gtk/empathy-ft-manager.c
parent40cc36e6362425d04322dceb6ac87f81884feafc (diff)
downloadgsoc2013-empathy-653e7b22a6962f8d7407de5165404b935f0be511.tar
gsoc2013-empathy-653e7b22a6962f8d7407de5165404b935f0be511.tar.gz
gsoc2013-empathy-653e7b22a6962f8d7407de5165404b935f0be511.tar.bz2
gsoc2013-empathy-653e7b22a6962f8d7407de5165404b935f0be511.tar.lz
gsoc2013-empathy-653e7b22a6962f8d7407de5165404b935f0be511.tar.xz
gsoc2013-empathy-653e7b22a6962f8d7407de5165404b935f0be511.tar.zst
gsoc2013-empathy-653e7b22a6962f8d7407de5165404b935f0be511.zip
Fixed yet more references to EMPATHY_FILE. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=1782
Diffstat (limited to 'libempathy-gtk/empathy-ft-manager.c')
-rw-r--r--libempathy-gtk/empathy-ft-manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-ft-manager.c b/libempathy-gtk/empathy-ft-manager.c
index 949a797ea..38d5cd79e 100644
--- a/libempathy-gtk/empathy-ft-manager.c
+++ b/libempathy-gtk/empathy-ft-manager.c
@@ -381,7 +381,7 @@ update_ft_row (EmpathyFTManager *ft_manager,
gchar *total_size_str;
gchar *transferred_bytes_str;
- if (total_size == EMPATHY_FILE_UNKNOWN_SIZE)
+ if (total_size == EMPATHY_TP_FILE_UNKNOWN_SIZE)
/* translators: the text before the "|" is context to
* help you decide on the correct translation. You MUST
* OMIT it in the translated string. */
@@ -449,7 +449,7 @@ update_ft_row (EmpathyFTManager *ft_manager,
}
- if (total_size != EMPATHY_FILE_UNKNOWN_SIZE)
+ if (total_size != EMPATHY_TP_FILE_UNKNOWN_SIZE)
percent = transferred_bytes * 100 / total_size;
else
percent = -1;