##// END OF EJS Templates
Prohibits the plot of a variable in several graphs (2)...
Prohibits the plot of a variable in several graphs (2) Uses previous operation to not generate 'plot' menu if the variable is already displayed

File last commit:

r487:ff7ed2ba3c52
r736:bca343a0ae6b
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.;
}