Mercurial > audlegacy-plugins
changeset 663:aaab0bede198 trunk
[svn] Cast those pointers properly, and do not use deprecated GTK+ functions.
author | chainsaw |
---|---|
date | Sat, 17 Feb 2007 07:46:52 -0800 |
parents | fb0196e8f03f |
children | 52b8efa55fcf |
files | ChangeLog src/projectm/main.c |
diffstat | 2 files changed, 11 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <nenolod@sacredspiral.co.uk> + 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 <nenolod@sacredspiral.co.uk> revision [1408] - id3tag.h -> audacious/id3tag.h
--- 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);*/ }