RCU-ification of AudioEngine port list, and DiskStreams. not well tested, but basically functional. better to get this in now rather than later.

git-svn-id: svn://localhost/ardour2/trunk@828 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-08-16 01:19:06 +00:00
parent c5619a0f98
commit 1ae0948138
36 changed files with 354 additions and 340 deletions

View file

@ -90,7 +90,7 @@ void
PlaylistSelector::show_for (RouteUI* ruix)
{
vector<const char*> item;
Diskstream* this_ds;
boost::shared_ptr<Diskstream> this_ds;
string str;
rui = ruix;
@ -116,7 +116,7 @@ PlaylistSelector::show_for (RouteUI* ruix)
for (DSPL_Map::iterator x = dspl_map.begin(); x != dspl_map.end(); ++x) {
Diskstream* ds = session->diskstream_by_id (x->first);
boost::shared_ptr<Diskstream> ds = session->diskstream_by_id (x->first);
if (ds == 0) {
continue;
@ -243,7 +243,7 @@ PlaylistSelector::selection_changed ()
return;
}
at->diskstream().use_playlist (apl);
at->diskstream()->use_playlist (apl);
hide ();
}