| 1962 | } |
| 1963 | |
| 1964 | void CaptureContext::LoadNotes(const QString &data) |
| 1965 | { |
| 1966 | QVariantMap root = JSONToVariant(data); |
| 1967 | |
| 1968 | for(QString key : root.keys()) |
| 1969 | { |
| 1970 | if(!key.isEmpty()) |
| 1971 | m_Notes[key] = root[key].toString(); |
| 1972 | } |
| 1973 | } |
| 1974 | |
| 1975 | bool CaptureContext::SaveEdits() |
| 1976 | { |
nothing calls this directly
no test coverage detected