| 94 | } |
| 95 | |
| 96 | int rowCount(const QModelIndex& parent = QModelIndex()) const override |
| 97 | { |
| 98 | if (!parent.isValid()) { |
| 99 | return m_plugins.count(); |
| 100 | } |
| 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | private: |
| 105 | QList<KDevelop::IPlugin*> m_plugins; |
nothing calls this directly
no test coverage detected