mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 14:45:43 +01:00
Fix small compile issue due to shared_ptr<> fixes
git-svn-id: svn://localhost/ardour2/trunk@1213 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
0d6c5f78e9
commit
e80214b71d
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ AnalysisWindow::analyze_data (Gtk::Button *button)
|
|||
|
||||
for (TrackSelection::iterator i = s.tracks.begin(); i != s.tracks.end(); ++i) {
|
||||
boost::shared_ptr<AudioPlaylist> pl
|
||||
= boost::dynamic_pointer_cast<AudioPlaylist*>((*i)->playlist());
|
||||
= boost::dynamic_pointer_cast<AudioPlaylist>((*i)->playlist());
|
||||
|
||||
if (!pl)
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue