comparison libgaim/protocols/qq/sys_msg.c @ 14345:3c58357772a2

[gaim-migrate @ 17047] Fixed a comment and a user notification. committer: Tailor Script <tailor@pidgin.im>
author Mark Huetsch <markhuetsch>
date Sat, 26 Aug 2006 17:22:24 +0000
parents 60b1bc8dbf37
children 6b8bc59414f0
comparison
equal deleted inserted replaced
14344:ed771d01239b 14345:3c58357772a2
193 g_return_if_fail(gc != NULL && from != NULL && to != NULL); 193 g_return_if_fail(gc != NULL && from != NULL && to != NULL);
194 194
195 qd = (qq_data *) gc->proto_data; 195 qd = (qq_data *) gc->proto_data;
196 qq_add_buddy_by_recv_packet(gc, strtol(from, NULL, 10), TRUE, TRUE); 196 qq_add_buddy_by_recv_packet(gc, strtol(from, NULL, 10), TRUE, TRUE);
197 197
198 message = g_strdup_printf(_("Use %s has approved your request"), from); 198 message = g_strdup_printf(_("User %s has approved your request"), from);
199 _qq_sys_msg_log_write(gc, message, from); 199 _qq_sys_msg_log_write(gc, message, from);
200 gaim_notify_info(gc, NULL, message, NULL); 200 gaim_notify_info(gc, NULL, message, NULL);
201 201
202 g_free(message); 202 g_free(message);
203 } 203 }