| 157 | } |
| 158 | |
| 159 | int KeyLineEdit::value() |
| 160 | { |
| 161 | assert(_is_number_mode); |
| 162 | |
| 163 | QString text = this->text(); |
| 164 | if (text != ""){ |
| 165 | return text.toInt(); |
| 166 | } |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | void KeyLineEdit::setRange(int min, int max) |
| 171 | { |
no outgoing calls
no test coverage detected