| 50 PurpleAccountOption *option; |
50 PurpleAccountOption *option; |
| 51 |
51 |
| 52 protocol->id = "prpl-icq"; |
52 protocol->id = "prpl-icq"; |
| 53 protocol->name = "ICQ"; |
53 protocol->name = "ICQ"; |
| 54 |
54 |
| 55 oscar_init_account_options(protocol); |
55 oscar_init_account_options(protocol, TRUE); |
| 56 |
56 |
| 57 option = purple_account_option_string_new(_("Server"), "server", oscar_get_login_server(TRUE, TRUE)); |
|
| 58 protocol->account_options = g_list_prepend(protocol->account_options, option); |
|
| 59 |
|
| 60 option = purple_account_option_string_new(_("Encoding"), "encoding", OSCAR_DEFAULT_CUSTOM_ENCODING); |
|
| 61 protocol->account_options = g_list_append(protocol->account_options, option); |
|
| 62 } |
57 } |
| 63 |
58 |
| 64 static void |
59 static void |
| 65 icq_protocol_class_init(PurpleProtocolClass *klass) |
60 icq_protocol_class_init(PurpleProtocolClass *klass) |
| 66 { |
61 { |