comparison src/protocols/jabber/jabber.c @ 12286:255e6912607b

[gaim-migrate @ 14590] Mostly whitespace, but a couple small typo fixes, and an A;B -> B;A; swap to be consistent in plugins/notify.c committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Thu, 01 Dec 2005 21:13:48 +0000
parents ecd471d1eeec
children 51898e3031e6
comparison
equal deleted inserted replaced
12285:af257d8679fe 12286:255e6912607b
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