From fff8fbfe802fec6af32de251a615b95e9c4b9ef2 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Wed, 28 Mar 2012 17:23:27 +0200 Subject: [PATCH] win: fix qca2 usage/grooveshark --- src/libtomahawk/playlist.h | 2 +- src/libtomahawk/viewmanager.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/libtomahawk/playlist.h b/src/libtomahawk/playlist.h index 5cc6c70cf..4ba6faa71 100644 --- a/src/libtomahawk/playlist.h +++ b/src/libtomahawk/playlist.h @@ -182,7 +182,7 @@ public: QList entriesFromQueries( const QList& queries, bool clearFirst = false ); - void setUpdater( PlaylistUpdaterInterface* interface ) { m_updater = interface; } + void setUpdater( PlaylistUpdaterInterface* pluinterface ) { m_updater = pluinterface; } PlaylistUpdaterInterface* updater() const { return m_updater; } Tomahawk::playlistinterface_ptr playlistInterface(); diff --git a/src/libtomahawk/viewmanager.h b/src/libtomahawk/viewmanager.h index 4dc2148b8..1320fd1bb 100644 --- a/src/libtomahawk/viewmanager.h +++ b/src/libtomahawk/viewmanager.h @@ -84,7 +84,7 @@ public: Tomahawk::playlistinterface_ptr currentPlaylistInterface() const; Tomahawk::ViewPage* currentPage() const; - Tomahawk::ViewPage* pageForInterface( Tomahawk::playlistinterface_ptr interface ) const; + Tomahawk::ViewPage* pageForInterface( Tomahawk::playlistinterface_ptr plInterface ) const; Tomahawk::ViewPage* show( Tomahawk::ViewPage* page ); @@ -185,9 +185,9 @@ private: void saveCurrentPlaylistSettings(); void loadCurrentPlaylistSettings(); - Tomahawk::playlist_ptr playlistForInterface( Tomahawk::playlistinterface_ptr interface ) const; - Tomahawk::dynplaylist_ptr dynamicPlaylistForInterface( Tomahawk::playlistinterface_ptr interface ) const; - Tomahawk::collection_ptr collectionForInterface( Tomahawk::playlistinterface_ptr interface ) const; + Tomahawk::playlist_ptr playlistForInterface( Tomahawk::playlistinterface_ptr plInterface ) const; + Tomahawk::dynplaylist_ptr dynamicPlaylistForInterface( Tomahawk::playlistinterface_ptr plInterface ) const; + Tomahawk::collection_ptr collectionForInterface( Tomahawk::playlistinterface_ptr plInterface ) const; QWidget* m_widget; InfoBar* m_infobar;