void Collection::deleteStation( const dynplaylist_ptr& s ) { QList<dynplaylist_ptr> todelete; todelete << s; m_stations.remove( s->guid() ); /* qDebug() << Q_FUNC_INFO << "Collection name" << name() << "from source id" << source()->id() << "numplaylists:" << m_playlists.count();*/ emit stationsDeleted( todelete ); }
void Collection::addStation( const dynplaylist_ptr& s ) { QList<dynplaylist_ptr> toadd; toadd << s; m_stations.insert( s->guid(), s ); /* qDebug() << Q_FUNC_INFO << "Collection name" << name() << "from source id" << source()->id() << "numplaylists:" << m_playlists.count();*/ emit stationsAdded( toadd ); }