mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Use ARDOUR::PlaylistSet instead of local typedefs
This commit is contained in:
parent
8b59bf47df
commit
dd542b8f4d
10 changed files with 39 additions and 42 deletions
|
|
@ -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 ());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue