| 1036 | } |
| 1037 | |
| 1038 | void ResultsTree::openContainingFolder() |
| 1039 | { |
| 1040 | if (!mContextItem) |
| 1041 | return; |
| 1042 | QString filePath = mContextItem->getErrorPathItem().file; |
| 1043 | if (!filePath.isEmpty()) { |
| 1044 | filePath = QFileInfo(filePath).absolutePath(); |
| 1045 | QDesktopServices::openUrl(QUrl::fromLocalFile(filePath)); |
| 1046 | } |
| 1047 | } |
| 1048 | |
| 1049 | void ResultsTree::tagSelectedItems(const QString &tag) |
| 1050 | { |
nothing calls this directly
no test coverage detected