Fix build. Ahem.
authorDavid Robillard <d@drobilla.net>
Mon, 2 Mar 2009 18:26:08 +0000 (18:26 +0000)
committerDavid Robillard <d@drobilla.net>
Mon, 2 Mar 2009 18:26:08 +0000 (18:26 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@4718 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/automation_line.cc

index 49e583ba36ce105e37e97775964d5fc084071d4d..5654ac22967dc31a0d8fec46d546a5e4156ab516 100644 (file)
@@ -786,22 +786,22 @@ AutomationLine::line_drag (uint32_t i1, uint32_t i2, float fraction, bool with_p
 
        for (uint32_t i = i1 ; i <= i2; i++) {
                cp = nth (i);
-               if ( cp->selected ) {
+               if (cp->selected()) {
                        range_found = true;
                }
        }
 
        if (range_found) {
                for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
-                       if ( (*i)->selected ) {
-                               modify_view_point (*(*i), trackview.editor.unit_to_frame ((*i)->get_x()), ((_height - (*i)->get_y()) /_height) + ydelta, with_push);
+                       if ((*i)->selected()) {
+                               modify_view_point (*(*i), trackview.editor().unit_to_frame ((*i)->get_x()), ((_height - (*i)->get_y()) /_height) + ydelta, with_push);
                        }
                }
        } else {
                ControlPoint *cp;
                for (uint32_t i = i1 ; i <= i2; i++) {
                        cp = nth (i);
-                       modify_view_point (*cp, trackview.editor.unit_to_frame (cp->get_x()), ((_height - cp->get_y()) /_height) + ydelta, with_push);
+                       modify_view_point (*cp, trackview.editor().unit_to_frame (cp->get_x()), ((_height - cp->get_y()) /_height) + ydelta, with_push);
                }
        }