From 52638c68f51209dc6c5a966feeadffc5b922f919 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 7 Jan 2013 10:55:05 +0100 Subject: Playlist: convert functions to methods --- src/PlaylistGlobal.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/PlaylistGlobal.cxx') diff --git a/src/PlaylistGlobal.cxx b/src/PlaylistGlobal.cxx index 92572cde..8490392e 100644 --- a/src/PlaylistGlobal.cxx +++ b/src/PlaylistGlobal.cxx @@ -34,14 +34,13 @@ extern "C" { static void playlist_tag_event(void) { - playlist_tag_changed(&global_partition->playlist); + global_partition->playlist.TagChanged(); } static void playlist_event(void) { - playlist_sync(&global_partition->playlist, - &global_partition->pc); + global_partition->playlist.SyncWithPlayer(global_partition->pc); } void -- cgit v1.2.3