Explicitly initialize parent in the copy constructor
[ardour.git] / libs / ardour / presentation_info.cc
index d070f83220b14a1a74b5ff63e65ad045721f003d..23d82f6409ed6c5731284baf3be8ef76bbd055ca 100644 (file)
@@ -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())
 {