diff --git a/app/common/timerange.cpp b/app/common/timerange.cpp index cd99a1bd4..33f92270c 100644 --- a/app/common/timerange.cpp +++ b/app/common/timerange.cpp @@ -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(); }