diff --git a/src/libtomahawk/ViewManager.cpp b/src/libtomahawk/ViewManager.cpp index f02e3316d..a66bc63df 100644 --- a/src/libtomahawk/ViewManager.cpp +++ b/src/libtomahawk/ViewManager.cpp @@ -28,7 +28,6 @@ #include "topbar/TopBar.h" #include "TreeModel.h" -#include "CollectionView.h" #include "PlaylistModel.h" #include "PlaylistView.h" #include "PlayableProxyModel.h" @@ -914,13 +913,6 @@ ViewManager::setTomahawkLoaded() } -ViewPage* -ViewManager::pageForCollection( const collection_ptr& col ) const -{ - return m_collectionViews.value( col ).data(); -} - - ViewPage* ViewManager::pageForDynPlaylist(const dynplaylist_ptr& pl) const { @@ -1001,13 +993,6 @@ ViewManager::dynamicPlaylistForInterface( Tomahawk::playlistinterface_ptr interf Tomahawk::collection_ptr ViewManager::collectionForInterface( Tomahawk::playlistinterface_ptr interface ) const { - foreach ( QWeakPointer view, m_collectionViews.values() ) - { - if ( view.data()->playlistInterface() == interface ) - { - return m_collectionViews.key( view ); - } - } foreach ( QWeakPointer view, m_collectionAlbumViews.values() ) { if ( view.data()->playlistInterface() == interface ) @@ -1041,7 +1026,7 @@ ViewManager::showCurrentTrack() // reset the correct mode, if the user has changed it since - if ( dynamic_cast< CollectionView* >( page ) ) + if ( dynamic_cast< TrackView* >( page ) ) m_currentMode = PlaylistModes::Flat; else if ( dynamic_cast< AlbumView* >( page ) ) m_currentMode = PlaylistModes::Album; diff --git a/src/libtomahawk/ViewManager.h b/src/libtomahawk/ViewManager.h index 78df072ac..c25234900 100644 --- a/src/libtomahawk/ViewManager.h +++ b/src/libtomahawk/ViewManager.h @@ -39,7 +39,6 @@ class AlbumInfoWidget; class ArtistInfoWidget; class ArtistView; class CollectionModel; -class CollectionView; class ContextWidget; class PlaylistModel; class PlaylistView; @@ -98,7 +97,6 @@ public: /// Get the view page for the given item. Not pretty... Tomahawk::ViewPage* pageForPlaylist( const Tomahawk::playlist_ptr& pl ) const; Tomahawk::ViewPage* pageForDynPlaylist( const Tomahawk::dynplaylist_ptr& pl ) const; - Tomahawk::ViewPage* pageForCollection( const Tomahawk::collection_ptr& pl ) const; /// Get a playlist (or dynamic playlist ) from a ViewPage* if the page is PlaylistView or DynamicWidget. /// Lives here but used by SourcesModel @@ -217,7 +215,6 @@ private: QList< Tomahawk::collection_ptr > m_superCollections; QHash< Tomahawk::dynplaylist_ptr, QWeakPointer > m_dynamicWidgets; - QHash< Tomahawk::collection_ptr, QWeakPointer > m_collectionViews; QHash< Tomahawk::collection_ptr, QWeakPointer > m_treeViews; QHash< Tomahawk::collection_ptr, QWeakPointer > m_collectionAlbumViews; QHash< Tomahawk::artist_ptr, QWeakPointer > m_artistViews;