| 104 | } |
| 105 | |
| 106 | KDevCategoryItem* KDevDocumentModel::category( const QString& category ) const |
| 107 | { |
| 108 | const auto categoryList = this->categoryList(); |
| 109 | for (KDevCategoryItem* item : categoryList) { |
| 110 | if ( item->toolTip() == category ) |
| 111 | return item; |
| 112 | } |
| 113 | |
| 114 | return nullptr; |
| 115 | } |
| 116 | |
| 117 | #include "moc_kdevdocumentmodel.cpp" |
no test coverage detected