| 625 | } |
| 626 | |
| 627 | void WorkingSet::changed( Sublime::Area* area ) |
| 628 | { |
| 629 | if ( m_loading ) { |
| 630 | return; |
| 631 | } |
| 632 | |
| 633 | { |
| 634 | //Do not capture changes done while loading |
| 635 | PushValue<bool> enableLoading( m_loading, true ); |
| 636 | |
| 637 | qCDebug(WORKINGSET) << "recording change done to" << m_id; |
| 638 | saveFromArea(area); |
| 639 | } |
| 640 | |
| 641 | emit setChangedSignificantly(); |
| 642 | } |
| 643 | |
| 644 | #include "moc_workingset.cpp" |
no outgoing calls
no test coverage detected