comparison pidgin/gtkdocklet.c @ 15505:762b6547adf9

GAIM_UNSEEN to PIDGIN_UNSEEN
author Sean Egan <seanegan@gmail.com>
date Sat, 03 Feb 2007 08:19:27 +0000
parents 6fde15c1dcfc
children 311315e979f7
comparison
equal deleted inserted replaced
15504:b53b783846a8 15505:762b6547adf9
92 { 92 {
93 GList *l_im = NULL; 93 GList *l_im = NULL;
94 GList *l_chat = NULL; 94 GList *l_chat = NULL;
95 95
96 l_im = pidgin_conversations_find_unseen_list(GAIM_CONV_TYPE_IM, 96 l_im = pidgin_conversations_find_unseen_list(GAIM_CONV_TYPE_IM,
97 GAIM_UNSEEN_TEXT, 97 PIDGIN_UNSEEN_TEXT,
98 FALSE, max); 98 FALSE, max);
99 99
100 l_chat = pidgin_conversations_find_unseen_list(GAIM_CONV_TYPE_CHAT, 100 l_chat = pidgin_conversations_find_unseen_list(GAIM_CONV_TYPE_CHAT,
101 GAIM_UNSEEN_NICK, 101 PIDGIN_UNSEEN_NICK,
102 FALSE, max); 102 FALSE, max);
103 103
104 if (l_im != NULL && l_chat != NULL) 104 if (l_im != NULL && l_chat != NULL)
105 return g_list_concat(l_im, l_chat); 105 return g_list_concat(l_im, l_chat);
106 else if (l_im != NULL) 106 else if (l_im != NULL)