| 1619 | |
| 1620 | |
| 1621 | void NTableView::downNote() { |
| 1622 | QKeyEvent *event = new QKeyEvent ( QEvent::KeyPress, Qt::Key_Down, Qt::NoModifier); |
| 1623 | QCoreApplication::postEvent(this, event); |
| 1624 | } |
| 1625 | |
| 1626 | void NTableView::upNote() { |
| 1627 | QKeyEvent *event = new QKeyEvent ( QEvent::KeyPress, Qt::Key_Up, Qt::NoModifier); |
nothing calls this directly
no outgoing calls
no test coverage detected