| 262 | } |
| 263 | |
| 264 | int QuickOpenModel::unfilteredRowCount() const |
| 265 | { |
| 266 | int count = 0; |
| 267 | for (const ProviderEntry& provider : m_providers) { |
| 268 | if (provider.enabled) { |
| 269 | count += provider.provider->unfilteredItemCount(); |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | return count; |
| 274 | } |
| 275 | |
| 276 | int QuickOpenModel::columnCount() const |
| 277 | { |
no test coverage detected