Rename _texture -> _video_texture.
[dcpomatic.git] / src / wx / closed_captions_dialog.h
index cfdab5f3c2c39393e7eaefcb5fe1f6b5df991444..1f0e450ff3203bc632ec2601d898af05a57963c6 100644 (file)
@@ -35,7 +35,8 @@ public:
        explicit ClosedCaptionsDialog (wxWindow* parent, FilmViewer* viewer);
 
        void clear ();
-       void set_film_and_butler (boost::shared_ptr<Film>, boost::weak_ptr<Butler>);
+       void update_tracks (std::shared_ptr<const Film> film);
+       void set_butler (std::weak_ptr<Butler>);
 
 private:
        void shown (wxShowEvent);
@@ -50,6 +51,6 @@ private:
        bool _current_in_lines;
        std::vector<wxString> _lines;
        std::vector<DCPTextTrack> _tracks;
-       boost::weak_ptr<Butler> _butler;
+       std::weak_ptr<Butler> _butler;
        wxTimer _timer;
 };