| 13 | #include <KTextEditor/Document> |
| 14 | |
| 15 | KDevelop::PersistentMovingRange::PersistentMovingRange(const KTextEditor::Range& range, const IndexedString& document, |
| 16 | bool shouldExpand) |
| 17 | : m_p(new PersistentMovingRangePrivate) |
| 18 | { |
| 19 | VERIFY_FOREGROUND_LOCKED; |
| 20 | m_p->m_range = range; |
| 21 | m_p->m_document = document; |
| 22 | m_p->m_shouldExpand = shouldExpand; |
| 23 | |
| 24 | m_p->connectTracker(); |
| 25 | } |
| 26 | |
| 27 | KDevelop::IndexedString KDevelop::PersistentMovingRange::document() const |
| 28 | { |
nothing calls this directly
no test coverage detected