]> sigrok.org Git - pulseview.git/commitdiff
Removed TimeMarker copy constructor
authorJoel Holdsworth <redacted>
Sat, 18 May 2013 17:15:16 +0000 (18:15 +0100)
committerJoel Holdsworth <redacted>
Sun, 19 May 2013 08:46:00 +0000 (09:46 +0100)
pv/view/timemarker.cpp
pv/view/timemarker.h

index ec0ab9a4fe4f59857e47e0fcc7443747e3039a1c..75ef4ea63e69b223616ffb072207dfba3b4ed224 100644 (file)
@@ -35,13 +35,6 @@ TimeMarker::TimeMarker(const View &view, const QColor &colour,
 {
 }
 
 {
 }
 
-TimeMarker::TimeMarker(const TimeMarker &s) :
-       _view(s._view),
-       _colour(s._colour),
-       _time(s._time)
-{
-}
-
 double TimeMarker::time() const
 {
        return _time;
 double TimeMarker::time() const
 {
        return _time;
index 37e10a3f0e386e14feb688193bed686c99c60e6b..2536db75b649694a05a3fe919c3eb7dd524fef27 100644 (file)
@@ -48,11 +48,6 @@ protected:
         */
        TimeMarker(const View &view, const QColor &colour, double time);
 
         */
        TimeMarker(const View &view, const QColor &colour, double time);
 
-       /**
-        * Copy constructor
-        */
-       TimeMarker(const TimeMarker &s);
-
 public:
        /**
         * Gets the time of the marker.
 public:
        /**
         * Gets the time of the marker.