| 429 | } |
| 430 | |
| 431 | void NumberSpinBox::setText(const QString& text) { |
| 432 | m_valueStr = text; |
| 433 | lineEdit()->setText(prefix() + text + suffix()); |
| 434 | } |
| 435 | |
| 436 | bool NumberSpinBox::setValue(double v) { |
| 437 | if (m_feedback && m_waitFeedback) { |
no outgoing calls