| 313 | } |
| 314 | |
| 315 | void KDevDocumentView::updateCategoryItem( KDevCategoryItem *item ) |
| 316 | { |
| 317 | QString text = KDevelop::ICore::self()->projectController()->prettyFilePath(item->url(), KDevelop::IProjectController::FormatPlain); |
| 318 | // remove trailing slash |
| 319 | if (text.length() > 1) { |
| 320 | text.chop(1); |
| 321 | } |
| 322 | item->setText(text); |
| 323 | } |
| 324 | |
| 325 | void KDevDocumentView::updateProjectPaths() |
| 326 | { |
nothing calls this directly
no test coverage detected