| 2121 | } |
| 2122 | |
| 2123 | std::string Document::makeUniqueLabel(std::string_view modelLabel) |
| 2124 | { |
| 2125 | if (modelLabel.empty()) { |
| 2126 | return {}; |
| 2127 | } |
| 2128 | |
| 2129 | return d->objectLabelManager.makeUniqueName(modelLabel, 3); |
| 2130 | } |
| 2131 | |
| 2132 | bool Document::isAnyRestoring() |
| 2133 | { |
no test coverage detected