diff --git a/src/libtomahawk/playlist/PlaylistView.cpp b/src/libtomahawk/playlist/PlaylistView.cpp index fc748fd19..d42d1dfe2 100644 --- a/src/libtomahawk/playlist/PlaylistView.cpp +++ b/src/libtomahawk/playlist/PlaylistView.cpp @@ -22,7 +22,6 @@ #include #include -#include "playlist/PlaylistProxyModel.h" #include "widgets/OverlayWidget.h" #include "ViewManager.h" #include "utils/Logger.h" @@ -36,7 +35,7 @@ PlaylistView::PlaylistView( QWidget* parent ) : TrackView( parent ) , m_model( 0 ) { - setProxyModel( new PlaylistProxyModel( this ) ); + setProxyModel( new PlayableProxyModel( this ) ); connect( contextMenu(), SIGNAL( triggered( int ) ), SLOT( onMenuTriggered( int ) ) ); }