summaryrefslogtreecommitdiff
path: root/gtk2_ardour/crossfade_view.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-01-02 00:17:55 +0000
committerCarl Hetherington <carl@carlh.net>2009-01-02 00:17:55 +0000
commit042997e5ed35778c5309b6119ca1dcf8f696c3cc (patch)
treef96471702eeeb27211afe7baf53fd3d3e230fa32 /gtk2_ardour/crossfade_view.cc
parent69ed2a3c2784ff5c02b68435bcb0c3f2b80e0b4b (diff)
Cleanups and a few comments.
git-svn-id: svn://localhost/ardour2/branches/3.0@4374 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/crossfade_view.cc')
-rw-r--r--gtk2_ardour/crossfade_view.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/crossfade_view.cc b/gtk2_ardour/crossfade_view.cc
index 68dc2ecbe0..c4a74b8a18 100644
--- a/gtk2_ardour/crossfade_view.cc
+++ b/gtk2_ardour/crossfade_view.cc
@@ -80,7 +80,7 @@ CrossfadeView::CrossfadeView (ArdourCanvas::Group *parent,
vestigial_frame->hide();
show_vestigial = false;
- group->signal_event().connect (bind (mem_fun (tv.editor, &PublicEditor::canvas_crossfade_view_event), group, this));
+ group->signal_event().connect (bind (mem_fun (tv.editor(), &PublicEditor::canvas_crossfade_view_event), group, this));
crossfade_changed (Change (~0));
@@ -174,7 +174,7 @@ CrossfadeView::redraw_curves ()
return;
}
- npoints = get_time_axis_view().editor.frame_to_pixel (crossfade->length());
+ npoints = get_time_axis_view().editor().frame_to_pixel (crossfade->length());
// npoints = std::min (gdk_screen_width(), npoints);
if (!_visible || !crossfade->active() || npoints < 3) {