mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-22 06:36:29 +01:00
limited history depth (no GUI yet); more work on import dialog and semantics
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2361 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
6c2728f981
commit
f2a2e9c002
21 changed files with 355 additions and 180 deletions
|
|
@ -247,9 +247,9 @@ StreamView::playlist_changed (boost::weak_ptr<Diskstream> wptr)
|
|||
void
|
||||
StreamView::diskstream_changed ()
|
||||
{
|
||||
Track *t;
|
||||
boost::shared_ptr<Track> t = _trackview.track();
|
||||
|
||||
if ((t = _trackview.track()) != 0) {
|
||||
if (t) {
|
||||
Gtkmm2ext::UI::instance()->call_slot (bind (mem_fun (*this, &StreamView::display_diskstream), boost::weak_ptr<Diskstream> (t->diskstream())));
|
||||
} else {
|
||||
Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::undisplay_diskstream));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue