fix compile with FFT_ANALYSIS=1, problem caused by a change in the type of RegionSelection

git-svn-id: svn://localhost/ardour2/trunk@1334 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2007-01-17 12:15:34 +00:00
parent 3dfae5be66
commit 3dd8ccb331
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ AnalysisWindow::analyze_data (Gtk::Button *button)
TimeAxisView *current_axis = (*i);
for (std::set<RegionView *>::iterator j = ars.begin(); j != ars.end(); ++j) {
for (std::list<RegionView *>::iterator j = ars.begin(); j != ars.end(); ++j) {
// Check that the region is actually audio (so we can analyze it)
AudioRegionView* arv = dynamic_cast<AudioRegionView*>(*j);
if (!arv)