| 492 | } |
| 493 | |
| 494 | void System::clearFromTopic(not_null<Data::ForumTopic*> topic) { |
| 495 | if (_manager) { |
| 496 | _manager->clearFromTopic(topic); |
| 497 | } |
| 498 | |
| 499 | topic->clearNotifications(); |
| 500 | _whenMaps.remove(topic); |
| 501 | _whenAlerts.remove(topic); |
| 502 | _waiters.remove(topic); |
| 503 | _settingWaiters.remove(topic); |
| 504 | |
| 505 | _watchedTopics.remove(topic); |
| 506 | |
| 507 | _waitTimer.cancel(); |
| 508 | showNext(); |
| 509 | } |
| 510 | |
| 511 | void System::clearFromSublist(not_null<Data::SavedSublist*> sublist) { |
| 512 | if (_manager) { |
no test coverage detected