timerange: use doubles instead of rationals when printing debug info
Doubles are infinitely more readable and have been the vast majority of debug printing cases thus far.
This commit is contained in:
@@ -241,6 +241,6 @@ OLIVE_NAMESPACE_EXIT
|
||||
|
||||
QDebug operator<<(QDebug debug, const OLIVE_NAMESPACE::TimeRange &r)
|
||||
{
|
||||
debug.nospace() << r.in() << " - " << r.out();
|
||||
debug.nospace() << r.in().toDouble() << " - " << r.out().toDouble();
|
||||
return debug.space();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user