comparison src/protocols/jabber/jabber.c @ 12284:ecd471d1eeec

[gaim-migrate @ 14588] Some whitespace stuff, so it doesn't clutter up my next commit. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Thu, 01 Dec 2005 19:55:35 +0000
parents d3cb077caf3e
children 255e6912607b
comparison
equal deleted inserted replaced
12283:4396691844e2 12284:ecd471d1eeec
1167 { 1167 {
1168 GList *m = NULL; 1168 GList *m = NULL;
1169 GaimPluginAction *act; 1169 GaimPluginAction *act;
1170 1170
1171 act = gaim_plugin_action_new(_("Set User Info..."), 1171 act = gaim_plugin_action_new(_("Set User Info..."),
1172 jabber_setup_set_info); 1172 jabber_setup_set_info);
1173 m = g_list_append(m, act); 1173 m = g_list_append(m, act);
1174 1174
1175 /* if (js->protocol_options & CHANGE_PASSWORD) { */ 1175 /* if (js->protocol_options & CHANGE_PASSWORD) { */
1176 act = gaim_plugin_action_new(_("Change Password..."), 1176 act = gaim_plugin_action_new(_("Change Password..."),
1177 jabber_password_change); 1177 jabber_password_change);
1178 m = g_list_append(m, act); 1178 m = g_list_append(m, act);
1179 /* } */ 1179 /* } */
1180 1180
1181 act = gaim_plugin_action_new(_("Search for Users..."), 1181 act = gaim_plugin_action_new(_("Search for Users..."),
1182 jabber_user_search_begin); 1182 jabber_user_search_begin);
1183 m = g_list_append(m, act); 1183 m = g_list_append(m, act);
1184 1184
1185 return m; 1185 return m;
1186 } 1186 }
1187 1187