| 547 | } |
| 548 | |
| 549 | void InstanceList::resumeWatch() |
| 550 | { |
| 551 | if (m_watchLevel > 0) { |
| 552 | qWarning() << "Bad suspend level resume in instance list"; |
| 553 | return; |
| 554 | } |
| 555 | m_watchLevel++; |
| 556 | if (m_watchLevel > 0 && m_dirty) { |
| 557 | loadList(); |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | void InstanceList::suspendWatch() |
| 562 | { |
nothing calls this directly
no test coverage detected