| 350 | } |
| 351 | |
| 352 | SessionFileRegistry *ChatRootView::sessionFileRegistry() const |
| 353 | { |
| 354 | if (!m_sessionFileRegistryResolved) { |
| 355 | m_sessionFileRegistryResolved = true; |
| 356 | if (auto context = qmlContext(this)) { |
| 357 | m_sessionFileRegistry = qobject_cast<SessionFileRegistry *>( |
| 358 | context->contextProperty("sessionFileRegistry").value<QObject *>()); |
| 359 | } |
| 360 | } |
| 361 | return m_sessionFileRegistry; |
| 362 | } |
| 363 | |
| 364 | Skills::SkillsManager *ChatRootView::skillsManager() const |
| 365 | { |
nothing calls this directly
no outgoing calls
no test coverage detected