| 622 | } |
| 623 | |
| 624 | Path PathInterner::internPath(const QString& path) |
| 625 | { |
| 626 | Path& ret = m_pathCache[path]; |
| 627 | if (ret.isEmpty() != path.isEmpty()) { |
| 628 | ret = Path(m_base, path); |
| 629 | } |
| 630 | return ret; |
| 631 | } |
| 632 | |
| 633 | QString StringInterner::internString(const QString& path) |
| 634 | { |
no test coverage detected