From c4403784febdbdd42e9c32e67fadb147f11fe566 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 8 May 2019 23:41:42 +0100 Subject: Put Time types in dcpomatic namespace. --- src/wx/audio_plot.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/wx/audio_plot.h') diff --git a/src/wx/audio_plot.h b/src/wx/audio_plot.h index 85306a58d..edb444a2a 100644 --- a/src/wx/audio_plot.h +++ b/src/wx/audio_plot.h @@ -41,7 +41,7 @@ public: wxColour colour (int n) const; - boost::signals2::signal, boost::optional)> Cursor; + boost::signals2::signal, boost::optional)> Cursor; static const int max_smoothing; @@ -52,14 +52,14 @@ private: : db(0) {} - Point (wxPoint draw_, DCPTime time_, float db_) + Point (wxPoint draw_, dcpomatic::DCPTime time_, float db_) : draw(draw_) , time(time_) , db(db_) {} wxPoint draw; - DCPTime time; + dcpomatic::DCPTime time; float db; }; -- cgit v1.2.3