Use ARDOUR::PlaylistSet instead of local typedefs

This commit is contained in:
Robin Gareus 2023-04-06 02:12:10 +02:00
parent 8b59bf47df
commit dd542b8f4d
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
10 changed files with 39 additions and 42 deletions

View file

@ -323,10 +323,10 @@ RegionSelection::end_time () const
}
/** @return the playlists that the regions in the selection are on */
set<std::shared_ptr<Playlist> >
PlaylistSet
RegionSelection::playlists () const
{
set<std::shared_ptr<Playlist> > pl;
PlaylistSet pl;
for (RegionSelection::const_iterator i = begin(); i != end(); ++i) {
pl.insert ((*i)->region()->playlist ());
}