13
0

L: Fix -Wreorder

This commit is contained in:
Robin Gareus 2024-05-20 22:09:54 +02:00
parent 199fc6fd14
commit c41ee6db4b
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -391,6 +391,11 @@ Editor::Editor ()
, marker_menu_item (0) , marker_menu_item (0)
, _visible_track_count (-1) , _visible_track_count (-1)
, toolbar_selection_clock_table (2,3) , toolbar_selection_clock_table (2,3)
#ifdef LIVETRAX
, mouse_select_button (ArdourButton::Element (ArdourButton::Text|ArdourButton::Body|ArdourButton::VectorIcon))
, mouse_move_button (ArdourButton::Element (ArdourButton::Text|ArdourButton::Body|ArdourButton::VectorIcon))
, mouse_cut_button (ArdourButton::Element (ArdourButton::Text|ArdourButton::Body|ArdourButton::VectorIcon))
#endif
, automation_mode_button (_("mode")) , automation_mode_button (_("mode"))
, selection (new Selection (this, true)) , selection (new Selection (this, true))
, cut_buffer (new Selection (this, false)) , cut_buffer (new Selection (this, false))
@ -439,11 +444,6 @@ Editor::Editor ()
, entered_regionview (0) , entered_regionview (0)
, clear_entered_track (false) , clear_entered_track (false)
, _edit_point (EditAtMouse) , _edit_point (EditAtMouse)
#ifdef LIVETRAX
, mouse_cut_button(ArdourButton::Element (ArdourButton::Text|ArdourButton::Body|ArdourButton::VectorIcon))
, mouse_move_button(ArdourButton::Element (ArdourButton::Text|ArdourButton::Body|ArdourButton::VectorIcon))
, mouse_select_button(ArdourButton::Element (ArdourButton::Text|ArdourButton::Body|ArdourButton::VectorIcon))
#endif
, meters_running (false) , meters_running (false)
, rhythm_ferret (0) , rhythm_ferret (0)
, _have_idled (false) , _have_idled (false)
@ -462,17 +462,17 @@ Editor::Editor ()
, _following_mixer_selection (false) , _following_mixer_selection (false)
, _show_touched_automation (false) , _show_touched_automation (false)
, _control_point_toggled_on_press (false) , _control_point_toggled_on_press (false)
, _stepping_axis_view (0)
, quantize_dialog (0)
, _main_menu_disabler (0)
, domain_bounce_info (nullptr)
, track_drag (nullptr)
#ifdef LIVETRAX #ifdef LIVETRAX
, _livetrax_btn_new_section (_("+Sec")) , _livetrax_btn_new_section (_("+Sec"))
, _livetrax_btn_new_location (_("+Loc")) , _livetrax_btn_new_location (_("+Loc"))
, _livetrax_btn_prev_marker (_("<<")) , _livetrax_btn_prev_marker (_("<<"))
, _livetrax_btn_next_marker (_(">>")) , _livetrax_btn_next_marker (_(">>"))
#endif #endif
, _stepping_axis_view (0)
, quantize_dialog (0)
, _main_menu_disabler (0)
, domain_bounce_info (nullptr)
, track_drag (nullptr)
, _visible_marker_types (all_marker_types) , _visible_marker_types (all_marker_types)
, _visible_range_types (all_range_types) , _visible_range_types (all_range_types)
{ {