| 2109 | } |
| 2110 | |
| 2111 | void Document::unregisterLabel(std::string_view oldLabel) |
| 2112 | { |
| 2113 | if (!oldLabel.empty()) { |
| 2114 | d->objectLabelManager.removeExactName(oldLabel); |
| 2115 | } |
| 2116 | } |
| 2117 | |
| 2118 | bool Document::containsLabel(std::string_view label) |
| 2119 | { |
no test coverage detected