| 1148 | } |
| 1149 | |
| 1150 | void KDiff3App::slotSelectionStart() |
| 1151 | { |
| 1152 | const QObject* s = sender(); |
| 1153 | if(s == nullptr) return; |
| 1154 | |
| 1155 | if(s != m_pDiffTextWindow1) m_pDiffTextWindow1->resetSelection(); |
| 1156 | if(s != m_pDiffTextWindow2) m_pDiffTextWindow2->resetSelection(); |
| 1157 | if(s != m_pDiffTextWindow3) m_pDiffTextWindow3->resetSelection(); |
| 1158 | if(s != m_pMergeResultWindow) m_pMergeResultWindow->resetSelection(); |
| 1159 | } |
| 1160 | |
| 1161 | void KDiff3App::slotSelectionEnd() |
| 1162 | { |
nothing calls this directly
no test coverage detected