mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
more avoidance of double initialization
This commit is contained in:
parent
08768e8185
commit
61b728bdcc
1 changed files with 2 additions and 2 deletions
|
|
@ -107,6 +107,8 @@ RegionView::RegionView (ArdourCanvas::Container* parent,
|
||||||
RegionView::RegionView (const RegionView& other)
|
RegionView::RegionView (const RegionView& other)
|
||||||
: sigc::trackable(other)
|
: sigc::trackable(other)
|
||||||
, TimeAxisViewItem (other)
|
, TimeAxisViewItem (other)
|
||||||
|
, sync_mark(0)
|
||||||
|
, sync_line(0)
|
||||||
, _silence_text (0)
|
, _silence_text (0)
|
||||||
, _xrun_markers_visible (false)
|
, _xrun_markers_visible (false)
|
||||||
, _cue_markers_visible (false)
|
, _cue_markers_visible (false)
|
||||||
|
|
@ -186,8 +188,6 @@ RegionView::init (bool wfd)
|
||||||
valid = true;
|
valid = true;
|
||||||
in_destructor = false;
|
in_destructor = false;
|
||||||
wait_for_data = wfd;
|
wait_for_data = wfd;
|
||||||
sync_mark = 0;
|
|
||||||
sync_line = 0;
|
|
||||||
|
|
||||||
if (name_highlight) {
|
if (name_highlight) {
|
||||||
name_highlight->set_data ("regionview", this);
|
name_highlight->set_data ("regionview", this);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue