Use new Xmms::Playlist:: constants instead of Xmms::Result::PLAYLISY_*.
[euphoria.git] / lib / playlist.rb
index b8b6406019d0c034b350d7b63bd1f988b425ca7e..d1fe2ff8bafbdcf8c13e96db1221627b829f7870 100644 (file)
@@ -33,13 +33,13 @@ class Playlist < Array
 
                @xmms.broadcast_playlist_changed.notifier do |res|
                        case res.value[:type]
-                               when Xmms::Result::PLAYLIST_CHANGED_ADD
+                               when Xmms::Playlist::ADD
                                        self << res.value[:id]
-                               when Xmms::Result::PLAYLIST_CHANGED_REMOVE
+                               when Xmms::Playlist::REMOVE
                                        # the daemon sends the position of the song, not the
                                        # unique mlib id
                                        delete(self[res.value[:position]])
-                               when Xmms::Result::PLAYLIST_CHANGED_CLEAR
+                               when Xmms::Playlist::CLEAR
                                        clear
                        end
                end