diff --git a/src/libtomahawk/ContextMenu.cpp b/src/libtomahawk/ContextMenu.cpp index 4bc60593f..4fef0daa6 100644 --- a/src/libtomahawk/ContextMenu.cpp +++ b/src/libtomahawk/ContextMenu.cpp @@ -341,7 +341,7 @@ ContextMenu::onSocialActionsLoaded() void -ContextMenu::setPlaylistInterface( const Tomahawk::playlistinterface_ptr& interface ) +ContextMenu::setPlaylistInterface( const Tomahawk::playlistinterface_ptr& plInterface ) { - m_interface = interface; + m_interface = plInterface; } diff --git a/src/libtomahawk/ContextMenu.h b/src/libtomahawk/ContextMenu.h index 38759fff5..3e59ee908 100644 --- a/src/libtomahawk/ContextMenu.h +++ b/src/libtomahawk/ContextMenu.h @@ -52,7 +52,7 @@ public: int supportedActions() const { return m_supportedActions; } void setSupportedActions( int actions ) { m_supportedActions = actions; } - void setPlaylistInterface( const Tomahawk::playlistinterface_ptr& interface ); + void setPlaylistInterface( const Tomahawk::playlistinterface_ptr& plInterface ); void setQuery( const Tomahawk::query_ptr& query ); void setQueries( const QList& queries );