##// END OF EJS Templates
Minor fix...
Minor fix By default sets the management mode of the thresholds of a color scale to 'manual', to avoid the recalculation of the thresholds for scalars and vectors

File last commit:

r487:ff7ed2ba3c52
r1110:0e96e473601d
Show More
DateUtils.cpp
13 lines | 383 B | text/x-c | CppLexer
#include "Common/DateUtils.h"
QDateTime DateUtils::dateTime(double secs, Qt::TimeSpec timeSpec) noexcept
{
// Uses msecs to be Qt 4 compatible
return QDateTime::fromMSecsSinceEpoch(secs * 1000., timeSpec);
}
double DateUtils::secondsSinceEpoch(const QDateTime &dateTime) noexcept
{
// Uses msecs to be Qt 4 compatible
return dateTime.toMSecsSinceEpoch() / 1000.;
}