| 421 | } |
| 422 | |
| 423 | void AStylePreferences::afterParensChanged() |
| 424 | { |
| 425 | if(!m_enableWidgetSignals) |
| 426 | return; |
| 427 | m_formatter->setAfterParens(chkAfterParens->isChecked()); |
| 428 | inpContinuation->setEnabled(chkAfterParens->isChecked()); |
| 429 | m_formatter->setContinuation(inpContinuation->value()); |
| 430 | |
| 431 | updatePreviewText(); |
| 432 | } |
| 433 | |
| 434 | #include "moc_astyle_preferences.cpp" |
nothing calls this directly
no test coverage detected