summaryrefslogtreecommitdiff
path: root/src/wx/audio_plot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/audio_plot.h')
-rw-r--r--src/wx/audio_plot.h6
1 files changed, 3 insertions, 3 deletions
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<void (boost::optional<DCPTime>, boost::optional<float>)> Cursor;
+ boost::signals2::signal<void (boost::optional<dcpomatic::DCPTime>, boost::optional<float>)> 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;
};