| 228 | } |
| 229 | |
| 230 | void XcaTreeView::setFilter(const QString &pattern) |
| 231 | { |
| 232 | pki_base::limitPattern = QRegularExpression(pattern, |
| 233 | QRegularExpression::CaseInsensitiveOption); |
| 234 | // Only to tell the model about the changed filter |
| 235 | proxy->setFilterFixedString(pattern); |
| 236 | } |
| 237 | |
| 238 | void XcaTreeView::deleteItems() |
| 239 | { |
nothing calls this directly
no outgoing calls
no test coverage detected