| 68 | } |
| 69 | |
| 70 | void IDebugSession::raiseEvent(event_t e) |
| 71 | { |
| 72 | if (IFrameStackModel* model = frameStackModel()) { |
| 73 | model->handleEvent(e); |
| 74 | } |
| 75 | if (IVariableController* variables = variableController()) { |
| 76 | variables->handleEvent(e); |
| 77 | } |
| 78 | // FIXME: consider if we actually need signals |
| 79 | emit event(e); |
| 80 | } |
| 81 | |
| 82 | QPair<QUrl, int> IDebugSession::convertToLocalUrl(const QPair<QUrl, int> &remoteUrl) const |
| 83 | { |
no test coverage detected