| 32 | // --------------------------------------------------------------------------- |
| 33 | |
| 34 | void TextBoxObject::invalidateDocCache() const |
| 35 | { |
| 36 | delete m_cachedDoc; |
| 37 | m_cachedDoc = nullptr; |
| 38 | m_cachedDocWidth = -1; |
| 39 | m_cachedText.clear(); |
| 40 | } |
| 41 | |
| 42 | QTextDocument* TextBoxObject::ensureDocCache(qreal width) const |
| 43 | { |
no test coverage detected