Try again to fix Windows build of previous.
[libdcp.git] / src / subtitle.h
index 8dba299de6b6aa2d8d9f4b9ccf14eaef79c2d955..6317a741a229c2025e1e4835f111dc0afb48367e 100644 (file)
@@ -58,10 +58,12 @@ public:
 
        virtual ~Subtitle () {}
 
+       /** @return subtitle start time (relative to the start of the reel) */
        Time in () const {
                return _in;
        }
 
+       /** @return subtitle finish time (relative to the start of the reel) */
        Time out () const {
                return _out;
        }
@@ -113,11 +115,11 @@ public:
                _v_position = p;
        }
 
-       void set_fade_up_time (dcp::Time t) {
+       void set_fade_up_time (Time t) {
                _fade_up_time = t;
        }
 
-       void set_fade_down_time (dcp::Time t) {
+       void set_fade_down_time (Time t) {
                _fade_down_time = t;
        }