| 32 | } |
| 33 | |
| 34 | QString WizLineInputDialog::input() |
| 35 | { |
| 36 | QString strText = ui->editInput->text(); |
| 37 | |
| 38 | // only trigger value change if user modified default value |
| 39 | if (strText == m_strDefault) { |
| 40 | return ""; |
| 41 | } |
| 42 | |
| 43 | |
| 44 | return strText; |
| 45 | } |
| 46 | |
| 47 | void WizLineInputDialog::setOKButtonEnable(bool enable) |
| 48 | { |
no test coverage detected