comparison src/log.c @ 12241:4777c5912068

[gaim-migrate @ 14543] We shouldn't translate the logger name twice. If we let the callers of gaim_log_logger_new() do it (the change that KingAnt just committed), then plugins can translate logger names. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 28 Nov 2005 01:43:53 +0000
parents 1c0fd404e07e
children a4500bcbec08
comparison
equal deleted inserted replaced
12240:1c0fd404e07e 12241:4777c5912068
351 351
352 for (n = loggers; n; n = n->next) { 352 for (n = loggers; n; n = n->next) {
353 data = n->data; 353 data = n->data;
354 if (!data->write) 354 if (!data->write)
355 continue; 355 continue;
356 list = g_list_append(list, _(data->name)); 356 list = g_list_append(list, data->name);
357 list = g_list_append(list, data->id); 357 list = g_list_append(list, data->id);
358 } 358 }
359 359
360 return list; 360 return list;
361 } 361 }