X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimemarker.hpp;fp=pv%2Fview%2Ftimemarker.hpp;h=10e3331c639ba4eee64bd146d1ea1d07c7fdd49c;hp=c72dedf56f79e0a1c223436e8841c8796337e125;hb=60d9b99a32e551cffd2b537d3e157d578a761c9b;hpb=dae21ebcf60d6a5d7c194736b1dc792a5cbf06a5 diff --git a/pv/view/timemarker.hpp b/pv/view/timemarker.hpp index c72dedf5..10e3331c 100644 --- a/pv/view/timemarker.hpp +++ b/pv/view/timemarker.hpp @@ -51,18 +51,18 @@ protected: * @param colour A reference to the colour of this cursor. * @param time The time to set the flag to. */ - TimeMarker(View &view, const QColor &colour, double time); + TimeMarker(View &view, const QColor &colour, const pv::util::Timestamp& time); public: /** * Gets the time of the marker. */ - double time() const; + const pv::util::Timestamp& time() const; /** * Sets the time of the marker. */ - void set_time(double time); + void set_time(const pv::util::Timestamp& time) override; float get_x() const; @@ -114,7 +114,7 @@ private Q_SLOTS: protected: const QColor &colour_; - double time_; + pv::util::Timestamp time_; QSizeF text_size_;