More renaming.
[dcpomatic.git] / src / lib / dcp_text_decoder.cc
index 576cfd3579b475d70549f6164f26be03eb14b653..168bfa5cc7f12c0948c83c4ca003943aeacde87f 100644 (file)
@@ -63,7 +63,7 @@ DCPTextDecoder::pass ()
 
        /* Gather all subtitles with the same time period that are next
           on the list.  We must emit all subtitles for the same time
-          period with the same text_subtitle() call otherwise the
+          period with the same plain_text() call otherwise the
           TextDecoder will assume there is nothing else at the
           time of emit the first.
        */
@@ -81,7 +81,7 @@ DCPTextDecoder::pass ()
                /* XXX: image subtitles */
        }
 
-       subtitle->emit_text (p, s);
+       subtitle->emit_plain (p, s);
        return false;
 }