| 289 | } |
| 290 | |
| 291 | void AbstractNavigationWidget::accept() |
| 292 | { |
| 293 | Q_D(AbstractNavigationWidget); |
| 294 | |
| 295 | Q_ASSERT(d->m_context); |
| 296 | |
| 297 | QPointer<AbstractNavigationWidget> thisPtr(this); |
| 298 | NavigationContextPointer nextContext = d->m_context->accept(); |
| 299 | |
| 300 | if (thisPtr) |
| 301 | setContext(nextContext); |
| 302 | } |
| 303 | |
| 304 | void AbstractNavigationWidget::back() |
| 305 | { |
no outgoing calls
no test coverage detected