From: Joel Holdsworth Date: Wed, 16 Jan 2013 18:56:16 +0000 (+0000) Subject: Explicitly initialise QObject in the copy constructor X-Git-Tag: pulseview-0.1.0~160 X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=fda416f178ec326315bf5172d902546498a3cf0d;hp=e314eca490a09eec9ee851787f6e8c28805a81fd Explicitly initialise QObject in the copy constructor --- diff --git a/pv/view/timemarker.cpp b/pv/view/timemarker.cpp index ec0ab9a4..8474791d 100644 --- a/pv/view/timemarker.cpp +++ b/pv/view/timemarker.cpp @@ -36,6 +36,7 @@ TimeMarker::TimeMarker(const View &view, const QColor &colour, } TimeMarker::TimeMarker(const TimeMarker &s) : + QObject(), _view(s._view), _colour(s._colour), _time(s._time)