| 97 | } |
| 98 | |
| 99 | std::string Start::getLastModifiedAsString(const Base::FileInfo& file) |
| 100 | { |
| 101 | Base::TimeInfo lastModified = file.lastModified(); |
| 102 | return QDateTime::fromSecsSinceEpoch(lastModified.getTime_t()) |
| 103 | .toTimeZone(QTimeZone::utc()) |
| 104 | .toString(Qt::ISODate) |
| 105 | .toStdString(); |
| 106 | } |
nothing calls this directly
no test coverage detected