Fix incorrect free and leak.
[libdcp.git] / src / dcp_time.h
index eff69579736a8cd040301d25697d84e10374b23d..1b73e3e8bc96f72655f721f4ce40cf75058b60b3 100644 (file)
@@ -39,7 +39,13 @@ public:
         *  and a frames per second count.
         */
        Time (int frame, int frames_per_second);
-       
+
+       /** Construct a Time from hours, minutes, seconds and ticks.
+        *  @param h_ Hours.
+        *  @param m_ Minutes.
+        *  @param s_ Seconds.
+        *  @param t_ Ticks (where 1 tick is 4 milliseconds).
+        */
        Time (int h_, int m_, int s_, int t_)
                : h (h_)
                , m (m_)