From 4994bc4fb1c0d835f04e08939ea095e972e19cef Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 7 Aug 2017 13:57:49 +0200 Subject: Explicitly initialize parent in the copy constructor --- libs/ardour/presentation_info.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libs/ardour/presentation_info.cc') diff --git a/libs/ardour/presentation_info.cc b/libs/ardour/presentation_info.cc index d070f83220..23d82f6409 100644 --- a/libs/ardour/presentation_info.cc +++ b/libs/ardour/presentation_info.cc @@ -145,7 +145,8 @@ PresentationInfo::PresentationInfo (order_t o, Flag f) /* OrderSet is set */ } PresentationInfo::PresentationInfo (PresentationInfo const& other) - : _order (other.order()) + : PBD::Stateful () + , _order (other.order()) , _flags (other.flags()) , _color (other.color()) { -- cgit v1.2.3