| 510 | } |
| 511 | |
| 512 | void QVButtonPanel::applyButtonStyle(QToolButton *button, bool locked) |
| 513 | { |
| 514 | if (!button) { |
| 515 | return; |
| 516 | } |
| 517 | |
| 518 | button->setStyleSheet(makeVButtonStyleSheet(m_btnColor, m_pressedColor, m_lockedColor, m_txtColor, locked)); |
| 519 | } |
| 520 | |
| 521 | QString QVButtonPanel::extractButtonLabel(const QString &vbuttonKey) const |
| 522 | { |
nothing calls this directly
no test coverage detected