mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
- Changed IO's vector<Port*>'s to PortList
- Added new Port classes, code to drive them - Added PortList, which is a filthy mess ATM (nevermind that, it's the interface that's important at this stage) - Added ChanCount, though it isn't very thoroughly used yet. That's the next step.... - Fixed a few bugs relating to loading sessions saved with trunk - Fixed a few random other bugs Slowly working towards type agnosticism while keeping all the former code/logic intact is the name of the game here Warning: Removing ports is currently (intentionally) broken due solely to laziness. git-svn-id: svn://localhost/ardour2/branches/midi@786 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
ab6f1ed9ba
commit
30c08ba655
99 changed files with 4074 additions and 2444 deletions
|
|
@ -1035,7 +1035,7 @@ CrossfadeEditor::make_waves (AudioRegion& region, WhichFade which)
|
|||
|
||||
gdouble yoff = n * ht;
|
||||
|
||||
if (region.source(n).peaks_ready (bind (mem_fun(*this, &CrossfadeEditor::peaks_ready), ®ion, which), peaks_ready_connection)) {
|
||||
if (region.audio_source(n).peaks_ready (bind (mem_fun(*this, &CrossfadeEditor::peaks_ready), ®ion, which), peaks_ready_connection)) {
|
||||
|
||||
WaveView* waveview = new WaveView (*(canvas->root()));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue