Remove useless code and clarify comment.
[dcpomatic.git] / src / wx / film_editor_panel.h
index 1ef4d9fc50f8c842b00a833c70fa2c4c94469414..e0514ba99d89ca6a42034e96ca77fd05a75ea803 100644 (file)
@@ -33,13 +33,10 @@ public:
        FilmEditorPanel (FilmEditor *, wxString);
 
        virtual void film_changed (Film::Property) {}
-       virtual void film_content_changed (
-               boost::shared_ptr<Content>,
-               boost::shared_ptr<AudioContent>,
-               boost::shared_ptr<SubtitleContent>,
-               boost::shared_ptr<FFmpegContent>,
-               int) = 0;
-       virtual void content_selection_changed () {}
+       /** Called when a given property of one of the selected Contents changes */
+       virtual void film_content_changed (int) = 0;
+       /** Called when the list of selected Contents changes */
+       virtual void content_selection_changed () = 0;
 
 protected:
        FilmEditor* _editor;