Post-merge tidy-up.
[dcpomatic.git] / src / wx / subtitle_view.cc
index e3aaffdfcf811a71e29f08a8d9d463b18277858d..a4218dc5d7f64658e2c19a9537ee6a2cf0f73df3 100644 (file)
@@ -27,6 +27,7 @@
 
 using std::list;
 using boost::shared_ptr;
+using boost::bind;
 using boost::dynamic_pointer_cast;
 
 SubtitleView::SubtitleView (wxWindow* parent, shared_ptr<Film> film, shared_ptr<Decoder> decoder, DCPTime position)
@@ -66,6 +67,9 @@ SubtitleView::SubtitleView (wxWindow* parent, shared_ptr<Film> film, shared_ptr<
                sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
        }
 
+#if 0
+       XXX
+
        list<ContentTextSubtitle> subs = decoder->subtitle->get_text (ContentTimePeriod (ContentTime(), ContentTime::max ()), true, true);
        FrameRateChange const frc = film->active_frame_rate_change (position);
        int n = 0;
@@ -81,6 +85,7 @@ SubtitleView::SubtitleView (wxWindow* parent, shared_ptr<Film> film, shared_ptr<
                        ++n;
                }
        }
+#endif
 
        SetSizerAndFit (sizer);
 }