| 212 | } |
| 213 | |
| 214 | QString CParameterRecord::GetImageFile(bool bAuto) |
| 215 | { |
| 216 | QString szPath = GetImagePath(); |
| 217 | if(bAuto) { |
| 218 | m_szImageFile = szPath |
| 219 | + QDir::separator() |
| 220 | + QDateTime::currentDateTime().toLocalTime() |
| 221 | .toString("yyyy_MM_dd_hh_mm_ss_zzz") + ".png"; |
| 222 | } |
| 223 | return m_szImageFile; |
| 224 | } |
| 225 | |
| 226 | void CParameterRecord::SetImageFile(const QString &newImageFile) |
| 227 | { |
no outgoing calls
no test coverage detected