| 312 | } |
| 313 | |
| 314 | KeypadWidget::~KeypadWidget() { |
| 315 | for (uint8_t row = 0; row != sRows; ++row) { |
| 316 | for (uint8_t col = 0; col != sCols; ++col) { |
| 317 | delete mKeys[row][col]; |
| 318 | } |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | void KeypadWidget::resizeEvent(QResizeEvent *event) { |
| 323 | QSize size{sBaseRect.size().scaled(event->size(), Qt::KeepAspectRatio)}, |
nothing calls this directly
no outgoing calls
no test coverage detected