# HG changeset patch # User chainsaw # Date 1171727212 28800 # Node ID aaab0bede1983f50412764a963da482dcc80e347 # Parent fb0196e8f03f794f834e467dc85acaefb8036b49 [svn] Cast those pointers properly, and do not use deprecated GTK+ functions. diff -r fb0196e8f03f -r aaab0bede198 ChangeLog --- a/ChangeLog Sat Feb 17 01:41:14 2007 -0800 +++ b/ChangeLog Sat Feb 17 07:46:52 2007 -0800 @@ -1,3 +1,12 @@ +2007-02-17 09:41:14 +0000 William Pitcock + revision [1410] + - remove a bunch of audacious-core cruft + - make taglib unavailability not cause configure to die + + trunk/configure.ac | 51 +++++---------------------------------------------- + 1 file changed, 5 insertions(+), 46 deletions(-) + + 2007-02-17 09:34:18 +0000 William Pitcock revision [1408] - id3tag.h -> audacious/id3tag.h diff -r fb0196e8f03f -r aaab0bede198 src/projectm/main.c --- a/src/projectm/main.c Sat Feb 17 01:41:14 2007 -0800 +++ b/src/projectm/main.c Sat Feb 17 07:46:52 2007 -0800 @@ -206,7 +206,7 @@ projectM_resetGL( globalPM, wvw, wvh ); - title_timer = SDL_AddTimer(500, get_xmms_title, NULL); + title_timer = SDL_AddTimer(500, (SDL_NewTimerCallback) get_xmms_title, NULL); /** Initialise the thread */ @@ -254,7 +254,7 @@ } else if ( evt == PROJECTM_VIDEOQUIT ) { - (void) gtk_idle_add (disable_projectm, NULL); + (void) g_idle_add ((GSourceFunc) disable_projectm, NULL); /* if(quit_timer == NULL) quit_timer = SDL_AddTimer(500, disable_projectm, NULL);*/ }