comparison src/audacious/pluginenum.c @ 4413:de33c83aa06f

Huge renaming patch, changing BMP references to Audacious.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 31 Mar 2008 06:47:48 +0300
parents 081839dd6664
children de1f750f6152
comparison
equal deleted inserted replaced
4412:180996fcf12a 4413:de33c83aa06f
830 830
831 /* make extension hash */ 831 /* make extension hash */
832 ext_hash = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); 832 ext_hash = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
833 833
834 #ifndef DISABLE_USER_PLUGIN_DIR 834 #ifndef DISABLE_USER_PLUGIN_DIR
835 scan_plugins(bmp_paths[BMP_PATH_USER_PLUGIN_DIR]); 835 scan_plugins(aud_paths[BMP_PATH_USER_PLUGIN_DIR]);
836 /* 836 /*
837 * This is in a separate lo 837 * This is in a separate lo
838 * DiscoveryPlugin *dpop so if the user puts them in the 838 * DiscoveryPlugin *dpop so if the user puts them in the
839 * wrong dir we'll still get them in the right order (home dir 839 * wrong dir we'll still get them in the right order (home dir
840 * first) - Zinx 840 * first) - Zinx
841 */ 841 */
842 while (plugin_dir_list[dirsel]) { 842 while (plugin_dir_list[dirsel]) {
843 dir = g_build_filename(bmp_paths[BMP_PATH_USER_PLUGIN_DIR], 843 dir = g_build_filename(aud_paths[BMP_PATH_USER_PLUGIN_DIR],
844 plugin_dir_list[dirsel++], NULL); 844 plugin_dir_list[dirsel++], NULL);
845 scan_plugins(dir); 845 scan_plugins(dir);
846 g_free(dir); 846 g_free(dir);
847 } 847 }
848 dirsel = 0; 848 dirsel = 0;