diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index d31cb34db6..3ff3d6aa3b 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -1010,7 +1010,7 @@ Editor::control_unselect () } void -Editor::control_select (PresentationInfo::global_order_t global_order, Selection::Operation op) +Editor::control_select (PresentationInfo::order_t global_order, Selection::Operation op) { /* handles the (static) signal from the ControlProtocol class that * requests setting the selected track to a given RID diff --git a/gtk2_ardour/editor.h b/gtk2_ardour/editor.h index 6cb1bc40b6..ca46df0c1b 100644 --- a/gtk2_ardour/editor.h +++ b/gtk2_ardour/editor.h @@ -1089,7 +1089,7 @@ class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARD void control_step_tracks_down (); void control_view (uint32_t); void control_scroll (float); - void control_select (ARDOUR::PresentationInfo::global_order_t which, Selection::Operation); + void control_select (ARDOUR::PresentationInfo::order_t which, Selection::Operation); void control_unselect (); void access_action (std::string,std::string); bool deferred_control_scroll (framepos_t);