diff options
Diffstat (limited to 'libempathy-gtk/empathy-ft-manager.c')
-rw-r--r-- | libempathy-gtk/empathy-ft-manager.c | 4 |
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; |