| 278 | } |
| 279 | |
| 280 | void DisassemblyView::contextCopyFunctionName() |
| 281 | { |
| 282 | std::string name = cpu().GetSymbolGuardian().FunctionStartingAtAddress(m_selectedAddressStart).name; |
| 283 | QGuiApplication::clipboard()->setText(QString::fromStdString(name)); |
| 284 | } |
| 285 | |
| 286 | void DisassemblyView::contextRemoveFunction() |
| 287 | { |
nothing calls this directly
no test coverage detected