diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-17 16:14:48 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-17 16:14:48 +0100 |
| commit | da66833e0a9f2197680baa6759db11eaf868f39d (patch) | |
| tree | 16eb1418116baf8edd65794bb47b989426b6c43b /src/wx/audio_dialog.h | |
| parent | 0f7110dc6a34640a55ba5bdc16dd23f2b9f47d30 (diff) | |
AudioDialog does not need explicit playlist.
Diffstat (limited to 'src/wx/audio_dialog.h')
| -rw-r--r-- | src/wx/audio_dialog.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/wx/audio_dialog.h b/src/wx/audio_dialog.h index b6cc41254..3c2d4f69c 100644 --- a/src/wx/audio_dialog.h +++ b/src/wx/audio_dialog.h @@ -31,8 +31,6 @@ class AudioDialog : public wxDialog public: AudioDialog (wxWindow *, boost::shared_ptr<Film> film); - void set_playlist (boost::shared_ptr<const Playlist>); - private: void content_changed (int); void channel_clicked (wxCommandEvent &); @@ -42,7 +40,6 @@ private: void analysis_finished (); void setup_peak_time (); - boost::shared_ptr<const Playlist> _playlist; boost::shared_ptr<AudioAnalysis> _analysis; boost::weak_ptr<Film> _film; AudioPlot* _plot; @@ -50,6 +47,6 @@ private: wxCheckBox* _channel_checkbox[MAX_DCP_AUDIO_CHANNELS]; wxCheckBox* _type_checkbox[AudioPoint::COUNT]; wxSlider* _smoothing; - boost::signals2::scoped_connection _playlist_connection; + boost::signals2::scoped_connection _film_connection; boost::signals2::scoped_connection _analysis_finished_connection; }; |
