aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2009-03-06 19:52:11 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-03-06 19:52:11 +0800
commitb26b207dff3695a9b0e11915883520f738da3dfa (patch)
treea1019a4c1abc50ffe6bb1990a58da9f6b69265e4 /libempathy
parent6b3b79f073995d33a2da2686a7eee70b963037b2 (diff)
downloadgsoc2013-empathy-b26b207dff3695a9b0e11915883520f738da3dfa.tar
gsoc2013-empathy-b26b207dff3695a9b0e11915883520f738da3dfa.tar.gz
gsoc2013-empathy-b26b207dff3695a9b0e11915883520f738da3dfa.tar.bz2
gsoc2013-empathy-b26b207dff3695a9b0e11915883520f738da3dfa.tar.lz
gsoc2013-empathy-b26b207dff3695a9b0e11915883520f738da3dfa.tar.xz
gsoc2013-empathy-b26b207dff3695a9b0e11915883520f738da3dfa.tar.zst
gsoc2013-empathy-b26b207dff3695a9b0e11915883520f738da3dfa.zip
Changed some G_STR_EQUALs to EMP_STR_EQUAL.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=2594
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-log-store-empathy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy/empathy-log-store-empathy.c b/libempathy/empathy-log-store-empathy.c
index e9cf887b2..2930aceb5 100644
--- a/libempathy/empathy-log-store-empathy.c
+++ b/libempathy/empathy-log-store-empathy.c
@@ -203,7 +203,7 @@ log_store_empathy_add_message (EmpathyLogStore *self,
body_str = empathy_message_get_body (message);
msg_type = empathy_message_get_tptype (message);
- if (G_STR_EMPTY (body_str))
+ if (EMP_STR_EMPTY (body_str))
return FALSE;
filename = log_store_empathy_get_filename (self, account, chat_id, chatroom);
@@ -475,7 +475,7 @@ log_store_empathy_get_messages_for_file (EmpathyLogStore *self,
sender = empathy_contact_new_full (account, sender_id, sender_name);
empathy_contact_set_is_user (sender, is_user);
- if (!G_STR_EMPTY (sender_avatar_token))
+ if (!EMP_STR_EMPTY (sender_avatar_token))
empathy_contact_load_avatar_cache (sender,
sender_avatar_token);
@@ -556,7 +556,7 @@ log_store_empathy_search_new (EmpathyLogStore *self,
gchar *text_casefold;
g_return_val_if_fail (EMPATHY_IS_LOG_STORE (self), NULL);
- g_return_val_if_fail (!G_STR_EMPTY (text), NULL);
+ g_return_val_if_fail (!EMP_STR_EMPTY (text), NULL);
text_casefold = g_utf8_casefold (text, -1);