| 358 | } |
| 359 | |
| 360 | winrt::hstring RobocopyViewModel::finishedOperationString() |
| 361 | { |
| 362 | switch (m_recordFile->GetOperation()) |
| 363 | { |
| 364 | case CopyOperation::Copy: return GetStringResource(L"Copied"); |
| 365 | case CopyOperation::Move: return GetStringResource(L"Moved"); |
| 366 | case CopyOperation::Delete: return GetStringResource(L"Deleted"); |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | void RobocopyViewModel::raiseProgressChange() |
| 371 | { |
nothing calls this directly
no test coverage detected