summaryrefslogtreecommitdiff
path: root/src/wx/audio_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/audio_dialog.h')
-rw-r--r--src/wx/audio_dialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/audio_dialog.h b/src/wx/audio_dialog.h
index aef8ea944..b6cc41254 100644
--- a/src/wx/audio_dialog.h
+++ b/src/wx/audio_dialog.h
@@ -31,7 +31,7 @@ class AudioDialog : public wxDialog
public:
AudioDialog (wxWindow *, boost::shared_ptr<Film> film);
- void set_content (boost::shared_ptr<AudioContent>);
+ void set_playlist (boost::shared_ptr<const Playlist>);
private:
void content_changed (int);
@@ -42,7 +42,7 @@ private:
void analysis_finished ();
void setup_peak_time ();
- boost::shared_ptr<AudioContent> _content;
+ boost::shared_ptr<const Playlist> _playlist;
boost::shared_ptr<AudioAnalysis> _analysis;
boost::weak_ptr<Film> _film;
AudioPlot* _plot;
@@ -50,6 +50,6 @@ private:
wxCheckBox* _channel_checkbox[MAX_DCP_AUDIO_CHANNELS];
wxCheckBox* _type_checkbox[AudioPoint::COUNT];
wxSlider* _smoothing;
- boost::signals2::scoped_connection _content_changed_connection;
+ boost::signals2::scoped_connection _playlist_connection;
boost::signals2::scoped_connection _analysis_finished_connection;
};