| 157 | m_summaryEdit->setText(txt); |
| 158 | } |
| 159 | void SimpleCommitForm::disableCommitButton() |
| 160 | { |
| 161 | m_disabled = true; |
| 162 | m_commitBtn->setDisabled(true); |
| 163 | m_commitBtn->setToolTip(i18n("Please stage some changes before committing.")); |
| 164 | } |
| 165 | void SimpleCommitForm::enableCommitButton() |
| 166 | { |
| 167 | m_disabled = false; |
no test coverage detected