diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2007-12-03 06:38:02 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-12-03 06:38:02 +0800 |
commit | 7bf5562a19ecac3c59dc23ebe507112e2745b635 (patch) | |
tree | 9fccd6613f968d0fc40b518399d7858cb3c609fe /libempathy/empathy-avatar.c | |
parent | d54baf1615b3d019878f7dac66303de77737a6f0 (diff) | |
download | gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar.gz gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar.bz2 gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar.lz gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar.xz gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar.zst gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.zip |
Conflicts:
ChangeLog
svn path=/trunk/; revision=455
Diffstat (limited to 'libempathy/empathy-avatar.c')
-rw-r--r-- | libempathy/empathy-avatar.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libempathy/empathy-avatar.c b/libempathy/empathy-avatar.c index a38dcd6f7..efce645ba 100644 --- a/libempathy/empathy-avatar.c +++ b/libempathy/empathy-avatar.c @@ -22,6 +22,8 @@ #include "config.h" +#include <telepathy-glib/util.h> + #include "empathy-avatar.h" #include "empathy-utils.h" #include "empathy-debug.h" @@ -56,7 +58,7 @@ avatar_get_filename (const gchar *token) NULL); g_mkdir_with_parents (avatar_path, 0700); - token_escaped = empathy_escape_as_identifier (token); + token_escaped = tp_escape_as_identifier (token); avatar_file = g_build_filename (avatar_path, token_escaped, NULL); g_free (token_escaped); |