X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Faudio_plot.h;h=edb444a2ab9047ed75b7021d7d5df2ebdea6129d;hb=9001a63be211fd8e97431f8fc07c66af01554f5a;hp=85306a58d4ee45acf2e210775f9100a094178e87;hpb=a423c0a0a6c891d0cacd42a3ac04c110c5f2be2e;p=dcpomatic.git 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; };