diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-11-10 23:31:28 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-11-10 23:31:28 +0000 |
| commit | d1db495ddf466c47f635ac78eec9229ecfa24722 (patch) | |
| tree | 174b6a4b995fa691d731385c9ac0c0ce4c4c18b5 /src/wx/film_editor.h | |
| parent | 3021ac636b39e61df5c90f9c3e75fde66d6fb97f (diff) | |
Allow multiple selection; return multiple selection from FilmEditor methods.
Diffstat (limited to 'src/wx/film_editor.h')
| -rw-r--r-- | src/wx/film_editor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/film_editor.h b/src/wx/film_editor.h index 80c35d3d8..9808e0d2f 100644 --- a/src/wx/film_editor.h +++ b/src/wx/film_editor.h @@ -62,10 +62,10 @@ public: return _film; } - boost::shared_ptr<Content> selected_content (); - boost::shared_ptr<VideoContent> selected_video_content (); - boost::shared_ptr<AudioContent> selected_audio_content (); - boost::shared_ptr<SubtitleContent> selected_subtitle_content (); + ContentList selected_content (); + VideoContentList selected_video_content (); + AudioContentList selected_audio_content (); + SubtitleContentList selected_subtitle_content (); private: void make_dcp_panel (); |
