| 216 | |
| 217 | |
| 218 | void DebugControlsWidget::performStepInto() |
| 219 | { |
| 220 | BNFunctionGraphType graphType = NormalFunctionGraph; |
| 221 | UIContext* context = UIContext::contextForWidget(this); |
| 222 | if (context && context->getCurrentView()) |
| 223 | graphType = context->getCurrentView()->getILViewType(); |
| 224 | |
| 225 | if (graphType == InvalidILViewType) |
| 226 | graphType = NormalFunctionGraph; |
| 227 | |
| 228 | m_controller->StepInto(graphType); |
| 229 | } |
| 230 | |
| 231 | |
| 232 | void DebugControlsWidget::performStepOver() |