| 245 | } |
| 246 | |
| 247 | void MainWindow::memAsciiToggle(HexWidget *edit) { |
| 248 | if (edit == Q_NULLPTR) { |
| 249 | return; |
| 250 | } |
| 251 | |
| 252 | edit->setAsciiArea(!edit->getAsciiArea()); |
| 253 | } |
| 254 | |
| 255 | void MainWindow::contextMem(const QPoint &posa) { |
| 256 | HexWidget *p = qobject_cast<HexWidget*>(sender()); |
nothing calls this directly
no test coverage detected