changeset 2824:8c518e7b2fff trunk

[svn] - APIv1 cruft removal
author nenolod
date Thu, 07 Jun 2007 04:21:59 -0700
parents 358034ea302d
children 91a480f68738
files ChangeLog src/audacious/build_stamp.c src/audacious/pluginenum.c
diffstat 3 files changed, 9 insertions(+), 20 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Jun 07 04:17:39 2007 -0700
+++ b/ChangeLog	Thu Jun 07 04:21:59 2007 -0700
@@ -1,3 +1,11 @@
+2007-06-07 11:17:39 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [4672]
+  - missing changelog names
+  
+  trunk/ChangeLog |    4 ++--
+  1 file changed, 2 insertions(+), 2 deletions(-)
+
+
 2007-06-07 10:55:03 +0000  Tomasz Mon <desowin@atheme.org>
   revision [4670]
   and of course I forgot new files
--- a/src/audacious/build_stamp.c	Thu Jun 07 04:17:39 2007 -0700
+++ b/src/audacious/build_stamp.c	Thu Jun 07 04:21:59 2007 -0700
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070607-4670";
+const gchar *svn_stamp = "20070607-4672";
--- a/src/audacious/pluginenum.c	Thu Jun 07 04:17:39 2007 -0700
+++ b/src/audacious/pluginenum.c	Thu Jun 07 04:21:59 2007 -0700
@@ -315,28 +315,9 @@
 
 /******************************************************************/
 
-/* FIXME: Placed here (hopefully) temporarily - descender */
-
-typedef struct {
-    const gchar *name;
-    const gchar *id;
-    void (*init)(Plugin *);
-} PluginType;
-
-static PluginType plugin_types[] = {
-    { "input"        , "get_iplugin_info", input_plugin_init },
-    { "output"       , "get_oplugin_info", output_plugin_init },
-    { "effect"       , "get_eplugin_info", effect_plugin_init },
-    { "general"      , "get_gplugin_info", general_plugin_init },
-    { "visualization", "get_vplugin_info", vis_plugin_init },
-    { "lowlevel"     , "get_lplugin_info", lowlevel_plugin_init },
-    { NULL, NULL, NULL }
-};
-
 static void
 add_plugin(const gchar * filename)
 {
-    PluginType *type;
     GModule *module;
     gpointer func;