| 74 | } |
| 75 | |
| 76 | void |
| 77 | Application::updateRecent(void) |
| 78 | { |
| 79 | Suscan::Singleton *sing = Suscan::Singleton::get_instance(); |
| 80 | |
| 81 | this->mediator->clearRecent(); |
| 82 | for (auto p = sing->getFirstRecent(); p != sing->getLastRecent(); ++p) |
| 83 | this->mediator->addRecent(*p); |
| 84 | this->mediator->finishRecent(); |
| 85 | } |
| 86 | |
| 87 | void |
| 88 | Application::run(Suscan::Object const &config) |
no test coverage detected