| 53 protocol->name = "ICQ"; |
53 protocol->name = "ICQ"; |
| 54 |
54 |
| 55 oscar_init_account_options(protocol); |
55 oscar_init_account_options(protocol); |
| 56 |
56 |
| 57 option = purple_account_option_string_new(_("Server"), "server", oscar_get_login_server(TRUE, TRUE)); |
57 option = purple_account_option_string_new(_("Server"), "server", oscar_get_login_server(TRUE, TRUE)); |
| 58 protocol->account_options = g_list_append(protocol->account_options, option); |
58 protocol->account_options = g_list_prepend(protocol->account_options, option); |
| 59 |
59 |
| 60 option = purple_account_option_string_new(_("Encoding"), "encoding", OSCAR_DEFAULT_CUSTOM_ENCODING); |
60 option = purple_account_option_string_new(_("Encoding"), "encoding", OSCAR_DEFAULT_CUSTOM_ENCODING); |
| 61 protocol->account_options = g_list_append(protocol->account_options, option); |
61 protocol->account_options = g_list_append(protocol->account_options, option); |
| 62 } |
62 } |
| 63 |
63 |