equal
deleted
inserted
replaced
39 ** |
39 ** |
40 ****************************************************************************/ |
40 ****************************************************************************/ |
41 |
41 |
42 #include "qmediatimerange.h" |
42 #include "qmediatimerange.h" |
43 |
43 |
44 QTM_BEGIN_NAMESPACE |
44 QT_BEGIN_NAMESPACE |
45 |
45 |
46 /*! |
46 /*! |
47 \class QMediaTimeInterval |
47 \class QMediaTimeInterval |
48 \brief The QMediaTimeInterval class represents a time interval with integer precision. |
48 \brief The QMediaTimeInterval class represents a time interval with integer precision. |
49 \ingroup multimedia |
49 \ingroup multimedia |
699 QMediaTimeRange operator-(const QMediaTimeRange &r1, const QMediaTimeRange &r2) |
699 QMediaTimeRange operator-(const QMediaTimeRange &r1, const QMediaTimeRange &r2) |
700 { |
700 { |
701 return (QMediaTimeRange(r1) -= r2); |
701 return (QMediaTimeRange(r1) -= r2); |
702 } |
702 } |
703 |
703 |
704 QTM_END_NAMESPACE |
704 QT_END_NAMESPACE |
705 |
705 |