----------------------------------------------------------------------------
| 2217 | } |
| 2218 | //---------------------------------------------------------------------------- |
| 2219 | void QTraceLogView::openDebugSymbolEditWindow(int addr, int bank) |
| 2220 | { |
| 2221 | int ret; |
| 2222 | debugSymbol_t *sym; |
| 2223 | SymbolEditWindow win(this); |
| 2224 | |
| 2225 | sym = debugSymbolTable.getSymbolAtBankOffset(bank, addr); |
| 2226 | |
| 2227 | win.setAddr(addr); |
| 2228 | win.setBank(bank); |
| 2229 | |
| 2230 | win.setSym(sym); |
| 2231 | |
| 2232 | ret = win.exec(); |
| 2233 | |
| 2234 | if (ret == QDialog::Accepted) |
| 2235 | { |
| 2236 | updateAllDebuggerWindows(QAsmView::UPDATE_NO_SCROLL); |
| 2237 | } |
| 2238 | } |
| 2239 | //---------------------------------------------------------------------------- |
| 2240 | void QTraceLogView::ctxMenuAddSym(void) |
| 2241 | { |
nothing calls this directly
no test coverage detected