libpurple/protocols/oscar/icq.c

changeset 37759
35e8677c6ce5
parent 37163
bdaa6ae19356
child 37761
4b57eced35d5
equal deleted inserted replaced
37653:dfadb1bef243 37759:35e8677c6ce5
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

mercurial