| 332 | ShellCopy::IsInSameDiskPartition(**m_iter, m_destination); |
| 333 | } |
| 334 | void RobocopyViewModel::onNormalRobocopyFinished() |
| 335 | { |
| 336 | if (m_hasDuplicates) |
| 337 | { |
| 338 | m_canContinue = true; |
| 339 | Taskbar::SetProgressState(Global::MainHwnd, Taskbar::ProgressState::Paused); |
| 340 | Global::UIThread.TryEnqueue([this] {raisePropertyChange(L"CanContinue"); }); |
| 341 | } |
| 342 | else |
| 343 | onAllFinished(); |
| 344 | } |
| 345 | void RobocopyViewModel::onFallbackFinished() |
| 346 | { |
| 347 | onAllFinished(); |
nothing calls this directly
no test coverage detected