Remove unused variable.
[dcpomatic.git] / src / lib / player_subtitles.h
index b43a1d0a9ffeeb5721fa5aa0f366037753be98cd..9e50ea7776c961ba86f3446438e7a131c4ac9f08 100644 (file)
@@ -30,15 +30,13 @@ class Font;
 class PlayerSubtitles
 {
 public:
-       PlayerSubtitles (DCPTime f, DCPTime t)
+       PlayerSubtitles (DCPTime f)
                : from (f)
-               , to (t)
        {}
 
        void add_fonts (std::list<boost::shared_ptr<Font> > fonts_);
 
        DCPTime from;
-       DCPTime to;
        std::list<boost::shared_ptr<Font> > fonts;
 
        /** ImageSubtitles, with their rectangles transformed as specified by their content */