diff --git a/src/accounts/spotify/SpotifyAccount.cpp b/src/accounts/spotify/SpotifyAccount.cpp index 0a5d72a2e..13522d3ea 100644 --- a/src/accounts/spotify/SpotifyAccount.cpp +++ b/src/accounts/spotify/SpotifyAccount.cpp @@ -82,6 +82,13 @@ SpotifyAccount::SpotifyAccount( const QString& accountId, const QString& path ) } +SpotifyAccount::~SpotifyAccount() +{ + foreach( QAction* action, m_customActions ) + ActionCollection::instance()->removeAction( action ); +} + + void SpotifyAccount::init() { diff --git a/src/accounts/spotify/SpotifyAccount.h b/src/accounts/spotify/SpotifyAccount.h index 1489ac47b..01dbad3fd 100644 --- a/src/accounts/spotify/SpotifyAccount.h +++ b/src/accounts/spotify/SpotifyAccount.h @@ -77,7 +77,7 @@ class SpotifyAccount : public ResolverAccount public: SpotifyAccount( const QString& accountId ); SpotifyAccount( const QString& accountId, const QString& path ); - virtual ~SpotifyAccount() {} + virtual ~SpotifyAccount(); virtual QPixmap icon() const; virtual QWidget* configurationWidget();