| 506 |
506 |
| 507 plugin_list = purple_plugins_find_all(); |
507 plugin_list = purple_plugins_find_all(); |
| 508 for (iter = plugin_list; iter; iter = iter->next) |
508 for (iter = plugin_list; iter; iter = iter->next) |
| 509 { |
509 { |
| 510 PurplePlugin *plug = PURPLE_PLUGIN(iter->data); |
510 PurplePlugin *plug = PURPLE_PLUGIN(iter->data); |
| |
511 |
| |
512 if (purple_plugin_loads_on_query(plug)) |
| |
513 continue; |
| 511 |
514 |
| 512 gnt_tree_add_choice(GNT_TREE(tree), plug, |
515 gnt_tree_add_choice(GNT_TREE(tree), plug, |
| 513 gnt_tree_create_row(GNT_TREE(tree), |
516 gnt_tree_create_row(GNT_TREE(tree), |
| 514 purple_plugin_info_get_name(purple_plugin_get_info(plug))), |
517 purple_plugin_info_get_name(purple_plugin_get_info(plug))), |
| 515 NULL, NULL); |
518 NULL, NULL); |