summaryrefslogtreecommitdiff
path: root/gtk2_ardour/streamview.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-06-21 11:44:22 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-06-21 11:44:22 -0400
commit0796ccfb652dd31ea1d94526e0e6d92863a972b0 (patch)
tree03150be4c68ad49a5734e6ecfd1258645b6ee35a /gtk2_ardour/streamview.cc
parenta8bd6ecc4fe4016090fad92daf6d9a572941d035 (diff)
use newly factored canvas in gtk2_ardour
Diffstat (limited to 'gtk2_ardour/streamview.cc')
-rw-r--r--gtk2_ardour/streamview.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/streamview.cc b/gtk2_ardour/streamview.cc
index 97e3d3aa79..15facc3adf 100644
--- a/gtk2_ardour/streamview.cc
+++ b/gtk2_ardour/streamview.cc
@@ -52,9 +52,9 @@ using namespace ARDOUR;
using namespace PBD;
using namespace Editing;
-StreamView::StreamView (RouteTimeAxisView& tv, ArdourCanvas::Group* canvas_group)
+StreamView::StreamView (RouteTimeAxisView& tv, ArdourCanvas::Layout* canvas_group)
: _trackview (tv)
- , _canvas_group (canvas_group ? canvas_group : new ArdourCanvas::Group (_trackview.canvas_display()))
+ , _canvas_group (canvas_group ? canvas_group : new ArdourCanvas::Layout (_trackview.canvas_display()))
, _samples_per_pixel (_trackview.editor().get_current_zoom ())
, rec_updating(false)
, rec_active(false)