| 192 | } |
| 193 | |
| 194 | void PatchReviewToolView::slotAppliedChanged( int newState ) { |
| 195 | if ( LocalPatchSource* lpatch = GetLocalPatchSource() ) { |
| 196 | lpatch->setAlreadyApplied( newState == Qt::Checked ); |
| 197 | m_plugin->notifyPatchChanged(); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | void PatchReviewToolView::showEditDialog() { |
| 202 | m_editPatch.setupUi( this ); |
nothing calls this directly
no test coverage detected