| 109 | } |
| 110 | |
| 111 | uint DocumentationQuickOpenProvider::unfilteredItemCount() const |
| 112 | { |
| 113 | uint ret = 0; |
| 114 | const QList<IDocumentationProvider*> providers = ICore::self()->documentationController()->documentationProviders(); |
| 115 | for (IDocumentationProvider* p : providers) { |
| 116 | ret += recursiveRowCount(p->indexModel(), QModelIndex()); |
| 117 | } |
| 118 | |
| 119 | return ret; |
| 120 | } |
| 121 | |
| 122 | QuickOpenDataPointer DocumentationQuickOpenProvider::data(uint row) const |
| 123 | { |
nothing calls this directly
no test coverage detected