fix a comment

This commit is contained in:
Fischlurch 2011-01-27 14:35:46 +01:00
parent a5a0d2925b
commit eafbd4b1cb

View file

@ -109,7 +109,7 @@ namespace time {
* @note supports scaling by a factor,
* which \em deliberately is chosen
* as int, not gavl_time_t, because the
* multiplying times is meaningless.
* multiplying of times is meaningless.
*/
class TimeVar
: public TimeValue
@ -170,8 +170,11 @@ namespace time {
: public TimeValue
{
protected:
/** generally immutable,
* but derived classes allow some limited mutation
* through special API calls */
Offset&
operator= (Offset const& o) ///< derived classes allow mutation
operator= (Offset const& o)
{
TimeValue::operator= (o);
return *this;