| 419 | } |
| 420 | |
| 421 | void KDiff3App::setLockPainting(bool bLock) |
| 422 | { |
| 423 | if(m_pDiffTextWindow1) m_pDiffTextWindow1->setPaintingAllowed(!bLock); |
| 424 | if(m_pDiffTextWindow2) m_pDiffTextWindow2->setPaintingAllowed(!bLock); |
| 425 | if(m_pDiffTextWindow3) m_pDiffTextWindow3->setPaintingAllowed(!bLock); |
| 426 | if(m_pOverview) m_pOverview->setPaintingAllowed(!bLock); |
| 427 | if(m_pMergeResultWindow) m_pMergeResultWindow->setPaintingAllowed(!bLock); |
| 428 | } |
| 429 | |
| 430 | void KDiff3App::createCaption() |
| 431 | { |
nothing calls this directly
no test coverage detected