MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / memGotoEdit

Method memGotoEdit

gui/qt/memorywidget.cpp:192–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190}
191
192void MainWindow::memGotoEdit(HexWidget *edit) {
193 if (edit == Q_NULLPTR) {
194 return;
195 }
196
197 bool accept = false;
198 QString address = getAddressString(m_memGotoAddr, &accept);
199
200 if (accept) {
201 memGoto(edit, static_cast<uint32_t>(hex2int(m_memGotoAddr = address)));
202 }
203}
204
205void MainWindow::memSync(HexWidget *edit) {
206 if (edit == Q_NULLPTR) {

Callers

nothing calls this directly

Calls 1

hex2intFunction · 0.85

Tested by

no test coverage detected