comparison libpurple/protocols/gg/gg.c @ 32733:485692373850

Gadu-Gadu: nick field does absolutely nothing
author tomkiewicz@cpw.pidgin.im
date Sat, 08 Oct 2011 19:18:58 +0000
parents 823c7f451700
children b01a41253fb6
comparison
equal deleted inserted replaced
32732:823c7f451700 32733:485692373850
2804 static void init_plugin(PurplePlugin *plugin) 2804 static void init_plugin(PurplePlugin *plugin)
2805 { 2805 {
2806 PurpleAccountOption *option; 2806 PurpleAccountOption *option;
2807 GList *encryption_options = NULL; 2807 GList *encryption_options = NULL;
2808 2808
2809 option = purple_account_option_string_new(_("Nickname"),
2810 "nick", _("Gadu-Gadu User"));
2811 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options,
2812 option);
2813
2814 option = purple_account_option_string_new(_("GG server"), 2809 option = purple_account_option_string_new(_("GG server"),
2815 "gg_server", ""); 2810 "gg_server", "");
2816 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, 2811 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options,
2817 option); 2812 option);
2818 2813