comparison src/protocols/irc/irc.c @ 6459:b52870734c21

[gaim-migrate @ 6968] Removed a duplicate colon. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 13 Aug 2003 22:02:50 +0000
parents 8f94cce8faa5
children 17a9cdac508e
comparison
equal deleted inserted replaced
6458:759d21aa2583 6459:b52870734c21
1 /** 1 /**
2 * @file irc.c 2 * @file irc.c
3 * 3 *
4 * gaim 4 * gaim
5 * 5 *
6 * Copyright (C) 2003, Ethan Blanton <eblanton@cs.purdue.edu> 6 * Copyright (C) 2003, Ethan Blanton <eblanton@cs.purdue.edu>
7 * Copyright (C) 2000-2003, Rob Flynn <rob@tgflinux.com> 7 * Copyright (C) 2000-2003, Rob Flynn <rob@tgflinux.com>
8 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> 8 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net>
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
12 * the Free Software Foundation; either version 2 of the License, or 12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version. 13 * (at your option) any later version.
14 * 14 *
502 GaimAccountOption *option; 502 GaimAccountOption *option;
503 503
504 split = gaim_account_user_split_new(_("Server"), IRC_DEFAULT_SERVER, '@'); 504 split = gaim_account_user_split_new(_("Server"), IRC_DEFAULT_SERVER, '@');
505 prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); 505 prpl_info.user_splits = g_list_append(prpl_info.user_splits, split);
506 506
507 option = gaim_account_option_int_new(_("Port:"), "port", IRC_DEFAULT_PORT); 507 option = gaim_account_option_int_new(_("Port"), "port", IRC_DEFAULT_PORT);
508 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); 508 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
509 509
510 option = gaim_account_option_string_new(_("Encoding"), "encoding", IRC_DEFAULT_CHARSET); 510 option = gaim_account_option_string_new(_("Encoding"), "encoding", IRC_DEFAULT_CHARSET);
511 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); 511 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
512 512