comparison libpurple/protocols/msn/error.c @ 15823:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents acf21858f5e2
children 44b4e8bd759b
comparison
equal deleted inserted replaced
15822:84b0f9b23ede 15823:32c366eeeb99
1 /** 1 /**
2 * @file error.c Error functions 2 * @file error.c Error functions
3 * 3 *
4 * gaim 4 * purple
5 * 5 *
6 * Gaim is the legal property of its developers, whose names are too numerous 6 * Purple is the legal property of its developers, whose names are too numerous
7 * to list here. Please refer to the COPYRIGHT file distributed with this 7 * to list here. Please refer to the COPYRIGHT file distributed with this
8 * source distribution. 8 * source distribution.
9 * 9 *
10 * This program is free software; you can redistribute it and/or modify 10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by 11 * it under the terms of the GNU General Public License as published by
261 gboolean debug; 261 gboolean debug;
262 262
263 g_snprintf(buf, sizeof(buf), _("MSN Error: %s\n"), 263 g_snprintf(buf, sizeof(buf), _("MSN Error: %s\n"),
264 msn_error_get_text(type, &debug)); 264 msn_error_get_text(type, &debug));
265 if (debug) 265 if (debug)
266 gaim_debug_warning("msn", "error %d: %s\n", type, buf); 266 purple_debug_warning("msn", "error %d: %s\n", type, buf);
267 else 267 else
268 gaim_notify_error(session->account->gc, NULL, buf, NULL); 268 purple_notify_error(session->account->gc, NULL, buf, NULL);
269 } 269 }