comparison src/audacious/pluginenum.c @ 4345:51b7809c2d87

- removed some unused ui_*.h references - deprecated set_status_buffering() and buffering variable
author mf0102 <0102@gmx.at>
date Fri, 14 Mar 2008 19:27:01 +0100
parents 309e8f970517
children 6a87d1c1da32
comparison
equal deleted inserted replaced
4344:db5555dcb744 4345:51b7809c2d87
37 #include <gmodule.h> 37 #include <gmodule.h>
38 #include <string.h> 38 #include <string.h>
39 39
40 #include "main.h" 40 #include "main.h"
41 #include "dock.h" 41 #include "dock.h"
42 #include "ui_main.h"
43 #include "playback.h" 42 #include "playback.h"
44 #include "playlist.h" 43 #include "playlist.h"
45 #include "strings.h" 44 #include "strings.h"
46 #include "util.h" 45 #include "util.h"
47 46
549 /* Pretty const casts courtesy of XMMS's plugin.h legacy. Anyone 548 /* Pretty const casts courtesy of XMMS's plugin.h legacy. Anyone
550 else thinks we could use a CONST macro to solve the warnings? 549 else thinks we could use a CONST macro to solve the warnings?
551 - descender */ 550 - descender */
552 p->set_info = (void (*)(gchar *, gint, gint, gint, gint)) playlist_set_info_old_abi; 551 p->set_info = (void (*)(gchar *, gint, gint, gint, gint)) playlist_set_info_old_abi;
553 p->set_info_text = input_set_info_text; 552 p->set_info_text = input_set_info_text;
554 p->set_status_buffering = input_set_status_buffering; 553 p->set_status_buffering = NULL; /* XXX: remove this someday --mf0102 */
555 554
556 ip_data.input_list = g_list_append(ip_data.input_list, p); 555 ip_data.input_list = g_list_append(ip_data.input_list, p);
557 556
558 p->enabled = TRUE; 557 p->enabled = TRUE;
559 558