mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-28 17:37:41 +01:00
stop using C++11 structure initializer
This commit is contained in:
parent
9010262bed
commit
af378e7256
1 changed files with 4 additions and 1 deletions
|
|
@ -378,7 +378,7 @@ Editor::Editor ()
|
|||
, ignore_gui_changes (false)
|
||||
, _drags (new DragManager (this))
|
||||
, lock_dialog (0)
|
||||
, last_event_time { 0, 0 }
|
||||
/* , last_event_time { 0, 0 } */ /* this initialization style requires C++11 */
|
||||
, _dragging_playhead (false)
|
||||
, _dragging_edit_point (false)
|
||||
, _show_measures (true)
|
||||
|
|
@ -473,6 +473,9 @@ Editor::Editor ()
|
|||
|
||||
_have_idled = false;
|
||||
|
||||
last_event_time.tv_sec = 0;
|
||||
last_event_time.tv_usec = 0;
|
||||
|
||||
selection_op_history.clear();
|
||||
before.clear();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue